blob: 6fb63639d5f6040a9e6036690f0563f04343c216 [file] [log] [blame]
// 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: expected expression, found `)`
fn main() {}