summaryrefslogtreecommitdiff
path: root/test/pending/run/t5256c.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5256c.scala')
-rw-r--r--test/pending/run/t5256c.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/pending/run/t5256c.scala b/test/pending/run/t5256c.scala
new file mode 100644
index 0000000000..8ebb51a009
--- /dev/null
+++ b/test/pending/run/t5256c.scala
@@ -0,0 +1,10 @@
+import scala.reflect.mirror._
+
+object Test extends App {
+ {
+ class A
+ val c = classToType(classOf[A])
+ println(c)
+ println(c.typeSymbol == classToSymbol(classOf[A]))
+ }
+}