aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5753_2/Impls_Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5753_2/Impls_Macros_1.scala')
-rw-r--r--tests/pending/run/t5753_2/Impls_Macros_1.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/run/t5753_2/Impls_Macros_1.scala b/tests/pending/run/t5753_2/Impls_Macros_1.scala
deleted file mode 100644
index d446d37bd..000000000
--- a/tests/pending/run/t5753_2/Impls_Macros_1.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-import scala.reflect.macros.blackbox.Context
-
-trait Macro_T {
- def foo[T](c: Context)(s: c.Expr[T]) = s
-}
-
-object Macros {
- def foo[T](s: T) = macro Impls.foo[T]
- object Impls extends Macro_T
-}