aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-def-path-dependent/Test_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-def-path-dependent/Test_1.scala')
-rw-r--r--tests/pending/run/macro-def-path-dependent/Test_1.scala25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/pending/run/macro-def-path-dependent/Test_1.scala b/tests/pending/run/macro-def-path-dependent/Test_1.scala
deleted file mode 100644
index 4161a6430..000000000
--- a/tests/pending/run/macro-def-path-dependent/Test_1.scala
+++ /dev/null
@@ -1,25 +0,0 @@
-// NOTE: blocked by SI-8049
-
-// package test1
-//
-// import scala.reflect.macros.blackbox.Context
-//
-// trait Exprs {
-// self: Universe =>
-//
-// class Expr[T]
-// }
-//
-// trait Reifiers {
-// self: Universe =>
-//
-// type Expr[T]
-//
-// def reify[T](expr: T): Expr[T] = macro Impls.reify[T]
-// }
-//
-// trait Universe extends Exprs with Reifiers
-//
-// object Impls {
-// def reify[T](cc: Context{ type PrefixType = Reifiers })(expr: cc.Expr[T]): cc.Expr[cc.prefix.value.Expr[T]] = ???
-// }