mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 20:00:43 +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
|
|
}
|