summaryrefslogtreecommitdiff
path: root/test/files/run/reify_closure7.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reify_closure7.scala')
-rw-r--r--test/files/run/reify_closure7.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/reify_closure7.scala b/test/files/run/reify_closure7.scala
index 8933df23fa..942c2cda9c 100644
--- a/test/files/run/reify_closure7.scala
+++ b/test/files/run/reify_closure7.scala
@@ -8,13 +8,13 @@ object Test extends App {
def foo[T](ys: List[T]): Int => Int = {
val z = 1
var y = 0
- val fun: reflect.Code[Int => Int] = x => {
+ val fun = reflect.Code.lift{(x: Int) => {
y += 1
q += 1
println("q = " + q)
println("y = " + y)
x + ys.length * z + q + y
- }
+ }}
if (clo == null) {
val reporter = new ConsoleReporter(new Settings)