summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t6123-explaintypes-macros.flags1
-rw-r--r--test/files/pos/t6123-explaintypes-macros.scala7
2 files changed, 0 insertions, 8 deletions
diff --git a/test/files/pos/t6123-explaintypes-macros.flags b/test/files/pos/t6123-explaintypes-macros.flags
deleted file mode 100644
index b36707c7cf..0000000000
--- a/test/files/pos/t6123-explaintypes-macros.flags
+++ /dev/null
@@ -1 +0,0 @@
--explaintypes
diff --git a/test/files/pos/t6123-explaintypes-macros.scala b/test/files/pos/t6123-explaintypes-macros.scala
deleted file mode 100644
index e650ad2038..0000000000
--- a/test/files/pos/t6123-explaintypes-macros.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-import scala.language.experimental.macros
-import scala.reflect.macros.Context
-
-object Macros {
- def printf(format: String, params: Any*): Unit = macro printf_impl
- def printf_impl(c: Context)(format: c.Expr[String], params: c.Expr[Any]*): c.Expr[Unit] = ???
-}