summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-bundle-whitebox-use-refined.check
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/neg/macro-bundle-whitebox-use-refined.check
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/neg/macro-bundle-whitebox-use-refined.check')
-rw-r--r--test/files/neg/macro-bundle-whitebox-use-refined.check17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/files/neg/macro-bundle-whitebox-use-refined.check b/test/files/neg/macro-bundle-whitebox-use-refined.check
new file mode 100644
index 0000000000..5792e317a6
--- /dev/null
+++ b/test/files/neg/macro-bundle-whitebox-use-refined.check
@@ -0,0 +1,17 @@
+Test_2.scala:2: error: value x is not a member of Any
+ println(ReturnTypeRefinement.foo.x)
+ ^
+Test_2.scala:7: error: type mismatch;
+ found : FundepMaterialization[Test.Foo,(Int, String, Boolean)]
+ required: FundepMaterialization[Test.Foo,Nothing]
+Note: (Int, String, Boolean) >: Nothing, but trait FundepMaterialization is invariant in type U.
+You may wish to define U as -U instead. (SLS 4.5)
+ val equiv = foo(Foo(23, "foo", true))
+ ^
+Test_2.scala:13: error: I don't like classes that contain integers
+ println(implicitly[DynamicMaterialization[C1]])
+ ^
+Test_2.scala:17: error: extractor macros can only be whitebox
+ case ExtractorMacro(x) => println(x)
+ ^
+four errors found