2018-10-22 18:21:55 +02:00
|
|
|
// Test that we do some basic error correction in the tokeniser.
|
2016-03-23 09:24:54 +13:00
|
|
|
|
|
|
|
fn main() {
|
2016-12-01 01:35:25 +03:00
|
|
|
foo(bar(;
|
2019-02-05 02:25:06 -08:00
|
|
|
//~^ ERROR cannot find function `bar` in this scope
|
2016-12-01 01:35:25 +03:00
|
|
|
}
|
2020-01-03 08:40:15 -05:00
|
|
|
//~^ ERROR: mismatched closing delimiter: `}`
|
2019-02-05 02:25:06 -08:00
|
|
|
|
2019-02-05 02:26:26 -08:00
|
|
|
fn foo(_: usize) {}
|