summaryrefslogtreecommitdiff
path: root/test/files/neg/bug112706A.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/bug112706A.scala')
-rw-r--r--test/files/neg/bug112706A.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/bug112706A.scala b/test/files/neg/bug112706A.scala
index fb98ad300c..af8491e6ef 100644
--- a/test/files/neg/bug112706A.scala
+++ b/test/files/neg/bug112706A.scala
@@ -1,7 +1,7 @@
package test;
trait Test {
def foo(p : List[Tuple2[String,String]]) = {
- for (val t <- p) t._1 match {
+ for (t <- p) t._1 match {
case Tuple2(node,_) =>
}
}