2021-01-23 20:48:31 +00:00
|
|
|
error: unknown byte escape: `f`
|
2020-01-08 18:25:42 +00:00
|
|
|
--> $DIR/byte-string-literals.rs:1:32
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-13 04:47:36 +00:00
|
|
|
LL | static FOO: &'static [u8] = b"\f";
|
2019-03-20 18:45:25 +00:00
|
|
|
| ^ unknown byte escape
|
2021-01-23 20:48:31 +00:00
|
|
|
|
|
2023-06-10 18:46:11 +00:00
|
|
|
= help: for more information, visit <https://doc.rust-lang.org/reference/tokens.html#literals>
|
2018-10-20 20:36:17 +00:00
|
|
|
|
2021-01-23 20:48:31 +00:00
|
|
|
error: unknown byte escape: `f`
|
2020-01-08 18:25:42 +00:00
|
|
|
--> $DIR/byte-string-literals.rs:4:8
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-13 04:47:36 +00:00
|
|
|
LL | b"\f";
|
2019-03-20 18:45:25 +00:00
|
|
|
| ^ unknown byte escape
|
2021-01-23 20:48:31 +00:00
|
|
|
|
|
2023-06-10 18:46:11 +00:00
|
|
|
= help: for more information, visit <https://doc.rust-lang.org/reference/tokens.html#literals>
|
2018-10-20 20:36:17 +00:00
|
|
|
|
2021-01-23 20:48:31 +00:00
|
|
|
error: invalid character in numeric character escape: `Z`
|
2020-01-08 18:25:42 +00:00
|
|
|
--> $DIR/byte-string-literals.rs:5:10
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-13 04:47:36 +00:00
|
|
|
LL | b"\x0Z";
|
2021-01-23 20:48:31 +00:00
|
|
|
| ^ invalid character in numeric character escape
|
2018-10-20 20:36:17 +00:00
|
|
|
|
2022-11-03 04:17:37 +00:00
|
|
|
error: non-ASCII character in byte string literal
|
2020-01-08 18:25:42 +00:00
|
|
|
--> $DIR/byte-string-literals.rs:6:7
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | b"é";
|
2022-11-03 04:17:37 +00:00
|
|
|
| ^ must be ASCII
|
2021-07-31 12:37:01 +00:00
|
|
|
|
|
|
|
|
help: if you meant to use the unicode code point for 'é', use a \xHH escape
|
|
|
|
|
|
|
|
|
LL | b"\xE9";
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~
|
2021-01-23 20:48:31 +00:00
|
|
|
|
2022-11-03 04:17:37 +00:00
|
|
|
error: non-ASCII character in raw byte string literal
|
2021-01-23 20:48:31 +00:00
|
|
|
--> $DIR/byte-string-literals.rs:7:10
|
|
|
|
|
|
|
|
|
LL | br##"é"##;
|
|
|
|
| ^ must be ASCII
|
2018-10-20 20:36:17 +00:00
|
|
|
|
2020-06-21 12:08:06 +00:00
|
|
|
error[E0766]: unterminated double quote byte string
|
2021-01-23 20:48:31 +00:00
|
|
|
--> $DIR/byte-string-literals.rs:8:6
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | b"a
|
2019-04-25 08:48:25 +00:00
|
|
|
| ______^
|
2018-10-20 20:36:17 +00:00
|
|
|
LL | | }
|
|
|
|
| |__^
|
|
|
|
|
2021-01-23 20:48:31 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2018-10-20 20:36:17 +00:00
|
|
|
|
2020-06-21 12:08:06 +00:00
|
|
|
For more information about this error, try `rustc --explain E0766`.
|