summaryrefslogtreecommitdiff
path: root/test/files/pos/t0674.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t0674.scala')
-rw-r--r--test/files/pos/t0674.scala22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/files/pos/t0674.scala b/test/files/pos/t0674.scala
new file mode 100644
index 0000000000..9f7a78dda3
--- /dev/null
+++ b/test/files/pos/t0674.scala
@@ -0,0 +1,22 @@
+object Test extends Application {
+println(
+for(a <- Some(1);
+ b <- Some(2);
+ c <- Some(3);
+ d <- Some(4);
+ e <- Some(5);
+ f <- Some(6);
+ g <- Some(7);
+ h <- Some(8);
+ i <- Some(9);
+ j <- Some(10);
+ k <- Some(11);
+ l <- Some(12);
+ m <- Some(13);
+ n <- Some(14);
+ o <- Some(15);
+ p <- Some(16);
+ q <- Some(17);
+ r <- Some(18);
+ s <- Some(19)) yield a)
+}