summaryrefslogtreecommitdiff
path: root/test/files/pos/bug756.scala
blob: 09735695f8c80135a295f4f232778967aa208709 (plain) (blame)
1
2
3
4
5
6
object test {
  for {
    n <- Some(42)
    _ <- Some(24)
  } yield n
}