summaryrefslogtreecommitdiff
path: root/test/files/run/t7985.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-11-19 21:37:27 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-11-19 21:54:12 +0100
commit77ecff775efd6ec21730ebd478722260b0f6c6b3 (patch)
treefcf61047276a42ec68e5021864fac15dfad3b407 /test/files/run/t7985.scala
parentc243435f113615b2f7407fbd683c93ec16c73749 (diff)
downloadscala-77ecff775efd6ec21730ebd478722260b0f6c6b3.tar.gz
scala-77ecff775efd6ec21730ebd478722260b0f6c6b3.tar.bz2
scala-77ecff775efd6ec21730ebd478722260b0f6c6b3.zip
SI-7985 Allow qualified type argument in patterns
We were considering the lower case `s` in `case _: Array[scala.Int]` as a sign that we were dealing with a type variable pattern. Now, we only do this if a lookahead confirms the absence of a the `.`
Diffstat (limited to 'test/files/run/t7985.scala')
-rw-r--r--test/files/run/t7985.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/t7985.scala b/test/files/run/t7985.scala
new file mode 100644
index 0000000000..5fe270f9c0
--- /dev/null
+++ b/test/files/run/t7985.scala
@@ -0,0 +1,3 @@
+object Test extends App {
+ Array(1) match { case _: Array[scala.Int] => }
+}