summaryrefslogtreecommitdiff
path: root/test/files/run/t7331c.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t7331c.scala')
-rw-r--r--test/files/run/t7331c.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/run/t7331c.scala b/test/files/run/t7331c.scala
new file mode 100644
index 0000000000..75873afcd0
--- /dev/null
+++ b/test/files/run/t7331c.scala
@@ -0,0 +1,11 @@
+import scala.reflect.runtime.universe._
+import scala.reflect.runtime.{currentMirror => cm}
+import scala.tools.reflect.ToolBox
+
+object Test extends App {
+ val tb = cm.mkToolBox()
+ val tree = tb.parse("class C").asInstanceOf[ClassDef]
+ println(showRaw(tree))
+ println(tree.pos)
+ println(tree.impl.self.pos)
+} \ No newline at end of file