2018-10-20 15:36:17 -05:00
|
|
|
error: unknown byte escape: f
|
2019-04-22 14:56:27 -05:00
|
|
|
--> $DIR/byte-string-literals.rs:3:32
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-12 23:47:36 -05:00
|
|
|
LL | static FOO: &'static [u8] = b"\f";
|
2019-03-20 13:45:25 -05:00
|
|
|
| ^ unknown byte escape
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: unknown byte escape: f
|
2019-04-22 14:56:27 -05:00
|
|
|
--> $DIR/byte-string-literals.rs:6:8
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-12 23:47:36 -05:00
|
|
|
LL | b"\f";
|
2019-03-20 13:45:25 -05:00
|
|
|
| ^ unknown byte escape
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: invalid character in numeric character escape: Z
|
2019-04-22 14:56:27 -05:00
|
|
|
--> $DIR/byte-string-literals.rs:7:10
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-12 23:47:36 -05:00
|
|
|
LL | b"\x0Z";
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^
|
|
|
|
|
2019-03-12 23:47:36 -05:00
|
|
|
error: byte constant must be ASCII. Use a \xHH escape for a non-ASCII byte
|
2019-04-22 14:56:27 -05:00
|
|
|
--> $DIR/byte-string-literals.rs:8:7
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | b"é";
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unterminated double quote byte string
|
2019-04-25 03:48:25 -05:00
|
|
|
--> $DIR/byte-string-literals.rs:9:6
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | b"a
|
2019-04-25 03:48:25 -05:00
|
|
|
| ______^
|
2018-10-20 15:36:17 -05:00
|
|
|
LL | | }
|
|
|
|
| |__^
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|