mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
200 B
Rust
12 lines
200 B
Rust
// Test that we can recover from mismatched braces in the parser.
|
|
|
|
trait Foo {
|
|
fn bar() {
|
|
let x = foo();
|
|
) //~ ERROR mismatched closing delimiter: `)`
|
|
}
|
|
|
|
fn main() {
|
|
let x = y.;
|
|
}
|