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

35 lines
938 B
Plaintext
Raw Normal View History

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