blob: 80d8ef65a6952a69bcc17bccf9642c3315a23d7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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() {}
|