summaryrefslogtreecommitdiff
path: root/test/files/run/macro-whitebox-extractor/Test_2.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-10-02 17:22:17 +0200
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-11-12 18:40:02 -0800
commitf83296552aa80faf8a9350131c0448bc05b34c96 (patch)
tree181a29f647609ba4d9cd8566fcde96c603d61259 /test/files/run/macro-whitebox-extractor/Test_2.scala
parent0d5c2f76ea30c6a45471dac635f035e931075453 (diff)
downloadscala-f83296552aa80faf8a9350131c0448bc05b34c96.tar.gz
scala-f83296552aa80faf8a9350131c0448bc05b34c96.tar.bz2
scala-f83296552aa80faf8a9350131c0448bc05b34c96.zip
blackbox restriction #4: can't customize pattern matching
When an application of a blackbox macro is used as an extractor in a pattern match, it triggers an unconditional compiler error, preventing customizations of pattern matching implemented with macros.
Diffstat (limited to 'test/files/run/macro-whitebox-extractor/Test_2.scala')
-rw-r--r--test/files/run/macro-whitebox-extractor/Test_2.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/run/macro-whitebox-extractor/Test_2.scala b/test/files/run/macro-whitebox-extractor/Test_2.scala
new file mode 100644
index 0000000000..41be6f9767
--- /dev/null
+++ b/test/files/run/macro-whitebox-extractor/Test_2.scala
@@ -0,0 +1,5 @@
+object Test extends App {
+ 42 match {
+ case Extractor(x) => println(x)
+ }
+}