summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-bundle-wrongcontext-a.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-02-21 21:48:16 +0100
committerEugene Burmako <xeno.by@gmail.com>2014-02-21 21:56:09 +0100
commit31b52ed651e58a68d478aabe41c62287b6d4d718 (patch)
tree15d3d74c2a7b1b76de62f9e5b8abd4225718551c /test/files/neg/macro-bundle-wrongcontext-a.scala
parent42031708b25f7252fab9992fe444651f8c141e40 (diff)
downloadscala-31b52ed651e58a68d478aabe41c62287b6d4d718.tar.gz
scala-31b52ed651e58a68d478aabe41c62287b6d4d718.tar.bz2
scala-31b52ed651e58a68d478aabe41c62287b6d4d718.zip
bundles now reject invalid context types
Vanilla macros only allow blackbox.Context, whitebox.Context and PrefixType refinements thereof. Bundles should behave in the same way.
Diffstat (limited to 'test/files/neg/macro-bundle-wrongcontext-a.scala')
-rw-r--r--test/files/neg/macro-bundle-wrongcontext-a.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/neg/macro-bundle-wrongcontext-a.scala b/test/files/neg/macro-bundle-wrongcontext-a.scala
new file mode 100644
index 0000000000..ed566fd977
--- /dev/null
+++ b/test/files/neg/macro-bundle-wrongcontext-a.scala
@@ -0,0 +1,13 @@
+import scala.reflect.macros.whitebox._
+import scala.language.experimental.macros
+
+abstract class MyContext extends Context
+
+class Bundle(val c: MyContext) {
+ import c.universe._
+ def impl = q"()"
+}
+
+object Macros {
+ def foo: Any = macro Bundle.impl
+} \ No newline at end of file