summaryrefslogtreecommitdiff
path: root/test/files/run/t5256d.check
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-06-08 11:43:20 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-06-08 15:35:23 +0200
commitabc1c0be79ac2fb2b0e75c87a489570a9c71aa6e (patch)
tree5d2723fa39aa8b28337b1e005ae06891667580a2 /test/files/run/t5256d.check
parent2123201e3cbc34676d2936226539bdfa0555c275 (diff)
downloadscala-abc1c0be79ac2fb2b0e75c87a489570a9c71aa6e.tar.gz
scala-abc1c0be79ac2fb2b0e75c87a489570a9c71aa6e.tar.bz2
scala-abc1c0be79ac2fb2b0e75c87a489570a9c71aa6e.zip
tests and fixes for the mirror API
Diffstat (limited to 'test/files/run/t5256d.check')
-rw-r--r--test/files/run/t5256d.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5256d.check b/test/files/run/t5256d.check
index e466e1e2e8..dd32c05a93 100644
--- a/test/files/run/t5256d.check
+++ b/test/files/run/t5256d.check
@@ -12,7 +12,7 @@ import scala.reflect.runtime.{currentMirror=>cm}
scala> class A { def foo = ??? }
defined class A
-scala> val c = cm.reflectClass(classOf[A]).symbol
+scala> val c = cm.classSymbol(classOf[A])
c: reflect.runtime.universe.ClassSymbol = class A
scala> println(c)