2021-01-23 12:48:31 -08:00
|
|
|
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
|
|
|
|
|
2019-03-13 00:47:36 -04:00
|
|
|
LL | static FOO: u8 = b'\f';
|
2019-03-20 11:45:25 -07:00
|
|
|
| ^ unknown byte escape
|
2021-01-23 12:48:31 -08:00
|
|
|
|
|
2023-06-10 14:46:11 -04:00
|
|
|
= help: for more information, visit <https://doc.rust-lang.org/reference/tokens.html#literals>
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2021-01-23 12:48:31 -08: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
|
|
|
|
|
2019-03-13 00:47:36 -04:00
|
|
|
LL | b'\f';
|
2019-03-20 11:45:25 -07:00
|
|
|
| ^ unknown byte escape
|
2021-01-23 12:48:31 -08:00
|
|
|
|
|
2023-06-10 14:46:11 -04:00
|
|
|
= help: for more information, visit <https://doc.rust-lang.org/reference/tokens.html#literals>
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2021-01-23 12:48:31 -08: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
|
|
|
|
|
2019-03-13 00:47:36 -04:00
|
|
|
LL | b'\x0Z';
|
2021-01-23 12:48:31 -08:00
|
|
|
| ^ invalid character in numeric character escape
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2021-01-23 12:48:31 -08: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' ';
|
2021-01-23 12:48:31 -08:00
|
|
|
| ^^^^ help: escape the character: `\t`
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2021-01-23 12:48:31 -08: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''';
|
2021-01-23 12:48:31 -08:00
|
|
|
| ^ help: escape the character: `\'`
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2022-11-03 15:17:37 +11:00
|
|
|
error: non-ASCII character in byte literal
|
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'é';
|
2022-11-03 15:17:37 +11:00
|
|
|
| ^ must be ASCII
|
2021-07-31 14:37:01 +02:00
|
|
|
|
|
|
|
|
help: if you meant to use the unicode code point for 'é', use a \xHH escape
|
|
|
|
|
|
|
|
|
LL | b'\xE9';
|
2021-06-21 19:07:19 -07:00
|
|
|
| ~~~~
|
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
|
2019-04-25 11:48:25 +03:00
|
|
|
| ^^^^
|
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`.
|