summaryrefslogtreecommitdiff
path: root/test/files/pos/t1336.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-03-19 18:26:55 -0700
committerPaul Phillips <paulp@improving.org>2012-03-19 20:13:36 -0700
commitc82ecabad6fc050411495f3fd50c3bf79ac7e96e (patch)
treee6498f4f2843bd14e16de365079601093af1abb5 /test/files/pos/t1336.scala
parent4f565de67fcaf3818c1bcbe204e254014077e1de (diff)
downloadscala-c82ecabad6fc050411495f3fd50c3bf79ac7e96e.tar.gz
scala-c82ecabad6fc050411495f3fd50c3bf79ac7e96e.tar.bz2
scala-c82ecabad6fc050411495f3fd50c3bf79ac7e96e.zip
Finally did something about broken irrefutability.
The parser has always been confused about tuple patterns in for comprehensions. It thinks it can fail to recognize an irrefutable pattern and have it removed in refchecks, but it is sadly mistaken, because the unnecessary filter has a tendency to fail the compile in typer. Look more intently for irrefutable patterns and don't insert the unnecessary filter. Closes SI-5589, SI-1336.
Diffstat (limited to 'test/files/pos/t1336.scala')
-rw-r--r--test/files/pos/t1336.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/pos/t1336.scala b/test/files/pos/t1336.scala
new file mode 100644
index 0000000000..63967985c7
--- /dev/null
+++ b/test/files/pos/t1336.scala
@@ -0,0 +1,10 @@
+object Foo {
+ def foreach( f : ((Int,Int)) => Unit ) {
+ println("foreach")
+ f(1,2)
+ }
+
+ for( (a,b) <- this ) {
+ println((a,b))
+ }
+}