summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/multibyte-char-use-seperator-issue-80134.rs
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
}