summaryrefslogtreecommitdiff
path: root/test/files/run/t5275.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5275.scala')
-rw-r--r--test/files/run/t5275.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/files/run/t5275.scala b/test/files/run/t5275.scala
index 534672be3c..5c84df499f 100644
--- a/test/files/run/t5275.scala
+++ b/test/files/run/t5275.scala
@@ -1,8 +1,9 @@
-import scala.reflect.mirror._
+import scala.reflect.runtime.universe._
+import scala.tools.reflect.Eval
object Test extends App {
reify {
class C(val foo: Int)
println(new C(2).foo)
}.eval
-}
+} \ No newline at end of file