]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/multibyte-char-use-seperator-issue-80134.rs
Rollup merge of #91699 - jsha:webkit-appearance-search-input, r=GuillaumeGomez
[rust.git] / src / test / ui / parser / multibyte-char-use-seperator-issue-80134.rs
1 // Regression test for #80134.
2
3 fn main() {
4     (()é);
5     //~^ ERROR: expected one of `)`, `,`, `.`, `?`, or an operator
6     //~| ERROR: cannot find value `é` in this scope
7     (()氷);
8     //~^ ERROR: expected one of `)`, `,`, `.`, `?`, or an operator
9     //~| ERROR: cannot find value `氷` in this scope
10 }