summaryrefslogtreecommitdiff
path: root/test/files/run/reify_closure1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reify_closure1.scala')
-rw-r--r--test/files/run/reify_closure1.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/reify_closure1.scala b/test/files/run/reify_closure1.scala
index 825a38dc1d..960f6aec3e 100644
--- a/test/files/run/reify_closure1.scala
+++ b/test/files/run/reify_closure1.scala
@@ -4,9 +4,9 @@ import reflect.runtime.Mirror.ToolBox
object Test extends App {
def foo[T](ys: List[T]): Int => Int = {
- val fun: reflect.Code[Int => Int] = x => {
+ val fun = reflect.Code.lift{(x: Int) => {
x
- }
+ }}
val reporter = new ConsoleReporter(new Settings)
val toolbox = new ToolBox(reporter)