blob: 422107867f7f995e0f47c80f0c954568405219aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
error: non-ASCII character in byte constant
--> $DIR/key-value-non-ascii.rs:3:19
|
LL | #[rustc_dummy = b"ffi.rs"]
| ^ byte constant 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 previous error
|