summaryrefslogtreecommitdiff
path: root/test/pending/pos/t0756.scala
blob: a778bd63d0016ebf705733f8c49ee3835817efe2 (plain) (blame)
1
2
3
4
5
6
7
8
object Test {
  for {
    n <- Some(42)

    _
    m <- Some(24)
  } yield n
}