2018-10-22 11:21:55 -05:00
|
|
|
// Test that we do some basic error correction in the tokeniser.
|
2016-03-22 15:24:54 -05:00
|
|
|
|
|
|
|
fn main() {
|
2016-11-30 16:35:25 -06:00
|
|
|
foo(bar(;
|
|
|
|
}
|
2020-01-03 07:40:15 -06:00
|
|
|
//~^ ERROR: mismatched closing delimiter: `}`
|
2019-02-05 04:25:06 -06:00
|
|
|
|
2019-02-05 04:26:26 -06:00
|
|
|
fn foo(_: usize) {}
|