summary refs log tree commit diff
path: root/src/test/ui/parser/issue-10636-2.rs
blob: a02fd41b349c25224502ac66a2466ff9602e0b0e (plain)
1
2
3
4
5
6
7
8
9
10
11
// FIXME(31528) we emit a bunch of silly errors here due to continuing past the
// first one. This would be easy-ish to address by better recovery in tokenisation.

pub fn trace_option(option: Option<isize>) {
    option.map(|some| 42;
                          //~^ ERROR: expected one of

} //~ ERROR: incorrect close delimiter
//~^ ERROR: expected expression, found `)`

fn main() {}