2018-10-20 15:36:17 -05:00
|
|
|
error: unknown byte escape: f
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/byte-literals.rs:6:21
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | static FOO: u8 = b'/f';
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unknown byte escape: f
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/byte-literals.rs:9:8
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | b'/f';
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: invalid character in numeric character escape: Z
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/byte-literals.rs:10:10
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | b'/x0Z';
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: byte constant must be escaped: /t
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/byte-literals.rs:11: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: byte constant must be escaped: '
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/byte-literals.rs:12: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: byte constant must be ASCII. Use a /xHH escape for a non-ASCII byte
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/byte-literals.rs:13: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 byte constant: b'a
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/byte-literals.rs:14:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | b'a
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|