blob: 7e7995d6724eb5432a36cb59d3ae4ce145497820 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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
}
|