summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-bundle-polymorphic.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/macro-bundle-polymorphic.scala')
-rw-r--r--test/files/neg/macro-bundle-polymorphic.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/files/neg/macro-bundle-polymorphic.scala b/test/files/neg/macro-bundle-polymorphic.scala
deleted file mode 100644
index faf1e2e9e5..0000000000
--- a/test/files/neg/macro-bundle-polymorphic.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-import scala.language.experimental.macros
-import scala.reflect.macros.BlackboxMacro
-
-trait Bundle[T] extends BlackboxMacro {
- def impl = ???
-}
-
-object Macros {
- def foo = macro Bundle.impl
- def foo = macro Bundle[Int].impl
- def foo = macro Bundle[Int, Nothing].impl
-} \ No newline at end of file