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.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/files/neg/macro-bundle-polymorphic.scala b/test/files/neg/macro-bundle-polymorphic.scala
index 0468d841bd..faf1e2e9e5 100644
--- a/test/files/neg/macro-bundle-polymorphic.scala
+++ b/test/files/neg/macro-bundle-polymorphic.scala
@@ -1,8 +1,7 @@
import scala.language.experimental.macros
-import scala.reflect.macros.Macro
-import scala.reflect.macros.Context
+import scala.reflect.macros.BlackboxMacro
-trait Bundle[T] extends Macro {
+trait Bundle[T] extends BlackboxMacro {
def impl = ???
}