aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t7235.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t7235.scala')
-rw-r--r--tests/pending/run/t7235.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/run/t7235.scala b/tests/pending/run/t7235.scala
deleted file mode 100644
index 2e6af545d..000000000
--- a/tests/pending/run/t7235.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.reflect.runtime.{universe => ru}
-import scala.reflect.runtime.{currentMirror => cm}
-import scala.tools.reflect.ToolBox
-
-class C
-
-object Test extends dotty.runtime.LegacyApp {
- val Block(List(ValDef(_, _, tpt: CompoundTypeTree, _)), _) = reify{ val x: C{} = ??? }.tree
- println(tpt)
- println(tpt.templ.parents)
- println(tpt.templ.self)
- println(tpt.templ.body)
-}