aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t1996.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t1996.scala')
-rw-r--r--tests/untried/pos/t1996.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/untried/pos/t1996.scala b/tests/untried/pos/t1996.scala
deleted file mode 100644
index 273012819..000000000
--- a/tests/untried/pos/t1996.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-object forbug {
- val l1 = List(List(ValDef(new A)), List(ValDef(new A)))
- for ((e1s, e2s) <- l1.zip(l1);
- (e1, e2) <- e1s.zip(e2s)) {
- e1.a.doSome(20)
-// ()
- }
-}
-
-
-class A {
- def doSome(a: Int): this.type = {
- println(a)
- this
- }
-}
-
-case class ValDef(a: A)
-