blob: 7200ea1f1dd1f03d6484f59b27f0fc3c63f48d9c [file] [log] [blame]
//@ error-pattern: mismatched closing delimiter: `}`
// 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;
}
fn main() {}