aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/pos
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-05-25 12:50:36 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-05-26 13:20:10 +0200
commitfc419f55e29b7e77e9062d40a0864086f8d51bfa (patch)
tree70d1420157c4bd5cd4cd3613bcbc7e13a1cfa113 /tests/disabled/pos
parent6b48e990d7e7d59cc5a67942a455eadcd9f4570f (diff)
downloaddotty-fc419f55e29b7e77e9062d40a0864086f8d51bfa.tar.gz
dotty-fc419f55e29b7e77e9062d40a0864086f8d51bfa.tar.bz2
dotty-fc419f55e29b7e77e9062d40a0864086f8d51bfa.zip
Don't evaluate isInstanceOf for value classes, disable bugged tests
The tests `i1059.scala` and `t3480.scala` are failing due to a bug in pattern matcher that evaluates the `x` in `List(x: _*)` incorrectly. Concerned issue: #1276
Diffstat (limited to 'tests/disabled/pos')
-rw-r--r--tests/disabled/pos/t3480.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/disabled/pos/t3480.scala b/tests/disabled/pos/t3480.scala
new file mode 100644
index 000000000..ba2e1a4b8
--- /dev/null
+++ b/tests/disabled/pos/t3480.scala
@@ -0,0 +1,4 @@
+object Test {
+ val List(_: _*) = List(1)
+ val Array( who, what : _* ) = "Eclipse plugin cannot not handle this" split (" ")
+}