summaryrefslogtreecommitdiff
path: root/test/files/pos/t5223.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t5223.scala')
-rw-r--r--test/files/pos/t5223.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/t5223.scala b/test/files/pos/t5223.scala
index 51682e9254..398630dc61 100644
--- a/test/files/pos/t5223.scala
+++ b/test/files/pos/t5223.scala
@@ -1,6 +1,6 @@
-import scala.reflect._
+import scala.reflect.mirror._
object Foo extends App {
- Code.lift{def printf(format: String, args: Any*): String = null }
- Code.lift{def printf(format: String, args: Any*): String = ("abc": @cloneable)}
+ reify{def printf(format: String, args: Any*): String = null }
+ reify{def printf(format: String, args: Any*): String = ("abc": @cloneable)}
}