aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macroPlugins-macroExpand/Macros_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macroPlugins-macroExpand/Macros_2.scala')
-rw-r--r--tests/pending/run/macroPlugins-macroExpand/Macros_2.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/pending/run/macroPlugins-macroExpand/Macros_2.scala b/tests/pending/run/macroPlugins-macroExpand/Macros_2.scala
deleted file mode 100644
index c9c88ad2f..000000000
--- a/tests/pending/run/macroPlugins-macroExpand/Macros_2.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-import scala.language.experimental.macros
-import scala.reflect.macros.blackbox.Context
-
-object Macros {
- def impl1(c: Context) = {
- import c.universe._
- q"""println("impl1")"""
- }
-
- def impl2(c: Context) = {
- import c.universe._
- q"""println("impl2")"""
- }
-
- def foo1: Unit = macro impl1
-
- def foo2: Unit = macro impl2
-} \ No newline at end of file