]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/multibyte-char-use-seperator-issue-80134.stderr
Account for ADT bodies and struct expressions
[rust.git] / src / test / ui / parser / multibyte-char-use-seperator-issue-80134.stderr
1 error: expected one of `)`, `,`, `.`, `?`, or an operator, found `é`
2   --> $DIR/multibyte-char-use-seperator-issue-80134.rs:4:8
3    |
4 LL |     (()é);
5    |        ^
6    |        |
7    |        expected one of `)`, `,`, `.`, `?`, or an operator
8    |        help: missing `,`
9
10 error: expected one of `)`, `,`, `.`, `?`, or an operator, found `氷`
11   --> $DIR/multibyte-char-use-seperator-issue-80134.rs:7:8
12    |
13 LL |     (()氷);
14    |        -^
15    |        |
16    |        expected one of `)`, `,`, `.`, `?`, or an operator
17    |        help: missing `,`
18
19 error[E0425]: cannot find value `é` in this scope
20   --> $DIR/multibyte-char-use-seperator-issue-80134.rs:4:8
21    |
22 LL |     (()é);
23    |        ^ not found in this scope
24
25 error[E0425]: cannot find value `氷` in this scope
26   --> $DIR/multibyte-char-use-seperator-issue-80134.rs:7:8
27    |
28 LL |     (()氷);
29    |        ^^ not found in this scope
30
31 error: aborting due to 4 previous errors
32
33 For more information about this error, try `rustc --explain E0425`.