2022-11-02 23:17:37 -05:00
|
|
|
error: non-ASCII character in byte string literal
|
2021-01-24 07:41:12 -06:00
|
|
|
--> $DIR/key-value-non-ascii.rs:3:19
|
|
|
|
|
|
|
|
|
LL | #[rustc_dummy = b"ffi.rs"]
|
2022-11-02 23:17:37 -05:00
|
|
|
| ^ must be ASCII
|
2021-07-31 07:37:01 -05:00
|
|
|
|
|
|
|
|
help: if you meant to use the UTF-8 encoding of 'ffi', use \xHH escapes
|
|
|
|
|
|
|
|
|
LL | #[rustc_dummy = b"/xEF/xAC/x83.rs"]
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~~~~
|
2021-01-24 07:41:12 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|