summaryrefslogtreecommitdiff
path: root/test/files/pos/t756.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t756.scala')
-rw-r--r--test/files/pos/t756.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t756.scala b/test/files/pos/t756.scala
new file mode 100644
index 0000000000..a3c790c654
--- /dev/null
+++ b/test/files/pos/t756.scala
@@ -0,0 +1,6 @@
+object test {
+ for {
+ n <- Some(42)
+ _ <- Some(24)
+ } yield n
+}