mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
366 B
Plaintext
14 lines
366 B
Plaintext
error: non-ASCII character in byte string literal
|
|
--> $DIR/key-value-non-ascii.rs:3:19
|
|
|
|
|
LL | #[rustc_dummy = b"ffi.rs"]
|
|
| ^ must be ASCII
|
|
|
|
|
help: if you meant to use the UTF-8 encoding of 'ffi', use \xHH escapes
|
|
|
|
|
LL | #[rustc_dummy = b"/xEF/xAC/x83.rs"]
|
|
| ~~~~~~~~~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|