summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/closure-return-syntax.rs
blob: c6a08abeff4ba76d1094bddf8618a08c9f2e091d (plain)
1
2
3
4
5
6
7
// Test that we cannot parse a closure with an explicit return type
// unless it uses braces.

fn main() {
    let x = || -> i32 22;
    //~^ ERROR expected `{`, found `22`
}