We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0031807 commit 7896e94Copy full SHA for 7896e94
tests/ui/parser/byte-literals.stderr
@@ -46,13 +46,10 @@ error: non-ASCII character in byte literal
46
--> $DIR/byte-literals.rs:10:7
47
|
48
LL | b'é';
49
- | ^ must be ASCII
50
- |
51
-help: if you meant to use the unicode code point for 'é', use a \xHH escape
52
53
-LL - b'é';
54
-LL + b'\xE9';
55
+ | ^
+ | |
+ | must be ASCII
+ | this multibyte character does not fit into a single byte
56
57
error[E0763]: unterminated byte constant
58
--> $DIR/byte-literals.rs:11:6
0 commit comments