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.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/neg/macro-bundle-polymorphic.scala b/test/files/neg/macro-bundle-polymorphic.scala
new file mode 100644
index 0000000000..0468d841bd
--- /dev/null
+++ b/test/files/neg/macro-bundle-polymorphic.scala
@@ -0,0 +1,13 @@
+import scala.language.experimental.macros
+import scala.reflect.macros.Macro
+import scala.reflect.macros.Context
+
+trait Bundle[T] extends Macro {
+ 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