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