granite-rust/src/test/ui/parser/byte-literals.stderr

53 lines
1.4 KiB
Text
Raw Normal View History

error: unknown byte escape: `f`
2020-01-08 21:25:42 +03:00
--> $DIR/byte-literals.rs:3:21
2018-10-20 23:36:17 +03:00
|
LL | static FOO: u8 = b'\f';
| ^ unknown byte escape
|
= help: for more information, visit <https://static.rust-lang.org/doc/master/reference.html#literals>
2018-10-20 23:36:17 +03:00
error: unknown byte escape: `f`
2020-01-08 21:25:42 +03:00
--> $DIR/byte-literals.rs:6:8
2018-10-20 23:36:17 +03:00
|
LL | b'\f';
| ^ unknown byte escape
|
= help: for more information, visit <https://static.rust-lang.org/doc/master/reference.html#literals>
2018-10-20 23:36:17 +03:00
error: invalid character in numeric character escape: `Z`
2020-01-08 21:25:42 +03:00
--> $DIR/byte-literals.rs:7:10
2018-10-20 23:36:17 +03:00
|
LL | b'\x0Z';
| ^ invalid character in numeric character escape
2018-10-20 23:36:17 +03:00
error: byte constant must be escaped: `\t`
2020-01-08 21:25:42 +03:00
--> $DIR/byte-literals.rs:8:7
2018-10-20 23:36:17 +03:00
|
2019-03-09 15:03:44 +03:00
LL | b' ';
| ^^^^ help: escape the character: `\t`
2018-10-20 23:36:17 +03:00
error: byte constant must be escaped: `'`
2020-01-08 21:25:42 +03:00
--> $DIR/byte-literals.rs:9:7
2018-10-20 23:36:17 +03:00
|
2019-03-09 15:03:44 +03:00
LL | b''';
| ^ help: escape the character: `\'`
2018-10-20 23:36:17 +03:00
error: non-ASCII character in byte constant
2020-01-08 21:25:42 +03:00
--> $DIR/byte-literals.rs:10:7
2018-10-20 23:36:17 +03:00
|
2019-03-09 15:03:44 +03:00
LL | b'é';
2018-10-20 23:36:17 +03:00
| ^
| |
| byte constant must be ASCII
| help: use a \xHH escape for a non-ASCII byte: `\xE9`
2018-10-20 23:36:17 +03:00
2020-06-12 14:01:53 +02:00
error[E0763]: unterminated byte constant
2020-01-08 21:25:42 +03:00
--> $DIR/byte-literals.rs:11:6
2018-10-20 23:36:17 +03:00
|
2019-03-09 15:03:44 +03:00
LL | b'a
| ^^^^
2018-10-20 23:36:17 +03:00
error: aborting due to 7 previous errors
2020-06-12 14:01:53 +02:00
For more information about this error, try `rustc --explain E0763`.