2021-04-06 15:49:59 +00:00
|
|
|
error: items in `extern` blocks cannot use non-ascii identifiers
|
2021-04-03 02:35:11 +00:00
|
|
|
--> $DIR/extern_block_nonascii_forbidden.rs:4:10
|
2021-04-06 15:49:59 +00:00
|
|
|
|
|
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
|
|
|
LL | type 一;
|
|
|
|
| ^^
|
|
|
|
|
|
2021-10-03 06:53:02 +00:00
|
|
|
= note: this limitation may be lifted in the future; see issue #83942 <https://github.com/rust-lang/rust/issues/83942> for more information
|
2021-04-06 15:49:59 +00:00
|
|
|
|
|
|
|
error: items in `extern` blocks cannot use non-ascii identifiers
|
2021-04-03 02:35:11 +00:00
|
|
|
--> $DIR/extern_block_nonascii_forbidden.rs:5:8
|
2021-04-06 15:49:59 +00:00
|
|
|
|
|
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
|
|
|
LL | type 一;
|
|
|
|
LL | fn 二();
|
|
|
|
| ^^
|
|
|
|
|
|
2021-10-03 06:53:02 +00:00
|
|
|
= note: this limitation may be lifted in the future; see issue #83942 <https://github.com/rust-lang/rust/issues/83942> for more information
|
2021-04-06 15:49:59 +00:00
|
|
|
|
|
|
|
error: items in `extern` blocks cannot use non-ascii identifiers
|
2021-04-03 02:35:11 +00:00
|
|
|
--> $DIR/extern_block_nonascii_forbidden.rs:6:12
|
2021-04-06 15:49:59 +00:00
|
|
|
|
|
|
|
|
LL | extern "C" {
|
|
|
|
| ---------- in this `extern` block
|
|
|
|
...
|
|
|
|
LL | static 三: usize;
|
|
|
|
| ^^
|
|
|
|
|
|
2021-10-03 06:53:02 +00:00
|
|
|
= note: this limitation may be lifted in the future; see issue #83942 <https://github.com/rust-lang/rust/issues/83942> for more information
|
2021-04-06 15:49:59 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|