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

35 lines
765 B
Text
Raw Normal View History

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