summaryrefslogtreecommitdiff
path: root/test/files/run/macro-bundle-context-refinement
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-02-21 21:40:12 +0100
committerEugene Burmako <xeno.by@gmail.com>2014-02-21 22:38:28 +0100
commitfb0c25c7fd004ee5de1a910bdcccc4fd503da3ce (patch)
treea30cdf647eaa282644c7f0b50e1e06d5205e78f6 /test/files/run/macro-bundle-context-refinement
parent64edb44fc6a4db0ba3ecee0555212d8112a17f1a (diff)
downloadscala-fb0c25c7fd004ee5de1a910bdcccc4fd503da3ce.tar.gz
scala-fb0c25c7fd004ee5de1a910bdcccc4fd503da3ce.tar.bz2
scala-fb0c25c7fd004ee5de1a910bdcccc4fd503da3ce.zip
more tests for macro bundles
Given the recent glaring oversight in macro bundles, I have to have more tests in order to make sure that things are going to work as they should.
Diffstat (limited to 'test/files/run/macro-bundle-context-refinement')
-rw-r--r--test/files/run/macro-bundle-context-refinement/Macros_1.scala19
-rw-r--r--test/files/run/macro-bundle-context-refinement/Test_2.scala4
2 files changed, 23 insertions, 0 deletions
diff --git a/test/files/run/macro-bundle-context-refinement/Macros_1.scala b/test/files/run/macro-bundle-context-refinement/Macros_1.scala
new file mode 100644
index 0000000000..d3a5d179c6
--- /dev/null
+++ b/test/files/run/macro-bundle-context-refinement/Macros_1.scala
@@ -0,0 +1,19 @@
+import scala.language.experimental.macros
+import scala.reflect.macros.blackbox.{Context => BlackboxContext}
+import scala.reflect.macros.whitebox.{Context => WhiteboxContext}
+
+class BlackboxBundle(val c: BlackboxContext { type PrefixType = C }) {
+ import c.universe._
+ def impl = reify(c.prefix.splice)
+}
+
+class WhiteboxBundle(val c: WhiteboxContext { type PrefixType = C }) {
+ import c.universe._
+ def impl = reify(c.prefix.splice)
+}
+
+class C {
+ def blackbox: C = macro BlackboxBundle.impl
+ def whitebox: C = macro WhiteboxBundle.impl
+ override def toString = "C"
+} \ No newline at end of file
diff --git a/test/files/run/macro-bundle-context-refinement/Test_2.scala b/test/files/run/macro-bundle-context-refinement/Test_2.scala
new file mode 100644
index 0000000000..43d641adeb
--- /dev/null
+++ b/test/files/run/macro-bundle-context-refinement/Test_2.scala
@@ -0,0 +1,4 @@
+object Test extends App {
+ println(new C().blackbox)
+ println(new C().whitebox)
+} \ No newline at end of file