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

36 lines
839 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: unknown byte escape: f
2020-01-08 12:25:42 -06:00
--> $DIR/byte-string-literals.rs:1:32
2018-10-20 15:36:17 -05:00
|
LL | static FOO: &'static [u8] = b"\f";
| ^ unknown byte escape
2018-10-20 15:36:17 -05:00
error: unknown byte escape: f
2020-01-08 12:25:42 -06:00
--> $DIR/byte-string-literals.rs:4:8
2018-10-20 15:36:17 -05:00
|
LL | b"\f";
| ^ unknown byte escape
2018-10-20 15:36:17 -05:00
error: invalid character in numeric character escape: Z
2020-01-08 12:25:42 -06:00
--> $DIR/byte-string-literals.rs:5:10
2018-10-20 15:36:17 -05:00
|
LL | b"\x0Z";
2018-10-20 15:36:17 -05:00
| ^
error: byte constant must be ASCII. Use a \xHH escape for a non-ASCII byte
2020-01-08 12:25:42 -06:00
--> $DIR/byte-string-literals.rs:6: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
| ^
2020-06-21 07:08:06 -05:00
error[E0766]: unterminated double quote byte string
2020-01-08 12:25:42 -06:00
--> $DIR/byte-string-literals.rs:7:6
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
LL | | }
| |__^
error: aborting due to 5 previous errors
2020-06-21 07:08:06 -05:00
For more information about this error, try `rustc --explain E0766`.