rust/tests/ui/parser/multibyte-char-use-seperator-issue-80134.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1,004 B
Plaintext
Raw Normal View History

error: expected one of `)`, `,`, `.`, `?`, or an operator, found `é`
--> $DIR/multibyte-char-use-seperator-issue-80134.rs:4:8
|
LL | (()é);
| ^
| |
| expected one of `)`, `,`, `.`, `?`, or an operator
| help: missing `,`
error: expected one of `)`, `,`, `.`, `?`, or an operator, found `氷`
2021-04-03 02:35:11 +00:00
--> $DIR/multibyte-char-use-seperator-issue-80134.rs:7:8
|
LL | (()氷);
| -^
| |
| expected one of `)`, `,`, `.`, `?`, or an operator
| help: missing `,`
error[E0425]: cannot find value `é` in this scope
--> $DIR/multibyte-char-use-seperator-issue-80134.rs:4:8
|
LL | (()é);
| ^ not found in this scope
error[E0425]: cannot find value `氷` in this scope
2021-04-03 02:35:11 +00:00
--> $DIR/multibyte-char-use-seperator-issue-80134.rs:7:8
|
LL | (()氷);
| ^^ not found in this scope
2021-04-03 02:35:11 +00:00
error: aborting due to 4 previous errors
2021-04-03 02:35:11 +00:00
For more information about this error, try `rustc --explain E0425`.