mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
312 B
Rust
11 lines
312 B
Rust
// Regression test for #80134.
|
|
|
|
fn main() {
|
|
(()é);
|
|
//~^ ERROR: expected one of `)`, `,`, `.`, `?`, or an operator
|
|
//~| ERROR: cannot find value `é` in this scope
|
|
(()氷);
|
|
//~^ ERROR: expected one of `)`, `,`, `.`, `?`, or an operator
|
|
//~| ERROR: cannot find value `氷` in this scope
|
|
}
|