summary refs log tree commit diff
path: root/src/test/compile-fail/do-lambda-requires-braces.rs
blob: 8610da71a3f33c97a03d2eed4183573e7ae5dc92 (plain)
1
2
3
4
5
fn main() {
    do something
        |x| do somethingelse //~ ERROR: expected `{` but found `do`
        |y| say(x, y)
}