aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-impl-relaxed/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-impl-relaxed/Macros_1.scala')
-rw-r--r--tests/pending/run/macro-impl-relaxed/Macros_1.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/run/macro-impl-relaxed/Macros_1.scala b/tests/pending/run/macro-impl-relaxed/Macros_1.scala
deleted file mode 100644
index 420eb2a39..000000000
--- a/tests/pending/run/macro-impl-relaxed/Macros_1.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-import language.experimental.macros
-import scala.reflect.macros.blackbox.Context
-
-object Macros {
- def implUU(c: Context)(x: c.Tree): c.Tree = x
- def implTU(c: Context)(x: c.Expr[Int]): c.Tree = x.tree
- def implUT(c: Context)(x: c.Tree): c.Expr[Int] = c.Expr[Int](x)
- def implTT(c: Context)(x: c.Expr[Int]): c.Expr[Int] = x
-
- def fooUU(x: Int): Int = macro implUU
- def fooTU(x: Int): Int = macro implTU
- def fooUT(x: Int): Int = macro implUT
- def fooTT(x: Int): Int = macro implTT
-} \ No newline at end of file