aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_renamed_type_spliceable.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_renamed_type_spliceable.scala')
-rw-r--r--tests/pending/run/reify_renamed_type_spliceable.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/pending/run/reify_renamed_type_spliceable.scala b/tests/pending/run/reify_renamed_type_spliceable.scala
deleted file mode 100644
index 6a34d1722..000000000
--- a/tests/pending/run/reify_renamed_type_spliceable.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-abstract class C {
- type T >: Null
-}
-
-object Test extends dotty.runtime.LegacyApp {
- def foo(c: C) = {
- import c.{T => U}
- reify {
- val x: U = null
- }
- }
-
- val expr = foo(new C {
- type T = AnyRef
- })
-
- println(expr.eval)
-}