aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5256d.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5256d.scala')
-rw-r--r--tests/pending/run/t5256d.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/pending/run/t5256d.scala b/tests/pending/run/t5256d.scala
new file mode 100644
index 000000000..5aa26071c
--- /dev/null
+++ b/tests/pending/run/t5256d.scala
@@ -0,0 +1,13 @@
+import scala.tools.partest.ReplTest
+
+object Test extends ReplTest {
+ def code = """
+import scala.reflect.runtime.universe._
+import scala.reflect.runtime.{currentMirror => cm}
+class A { def foo = ??? }
+val c = cm.classSymbol(classOf[A])
+println(c)
+println(c.fullName)
+println(c.info)
+ """
+} \ No newline at end of file