rust/src/test/ui/imports/local-modularized-tricky-fail-2.stderr

37 lines
1.1 KiB
Plaintext
Raw Normal View History

error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
2018-12-25 09:56:47 -06:00
--> $DIR/local-modularized-tricky-fail-2.rs:20:32
|
LL | exported!();
| ------------ in this macro invocation
...
2019-03-09 06:03:44 -06:00
LL | () => ( struct Б; )
| ^
|
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
2018-12-25 09:56:47 -06:00
--> $DIR/local-modularized-tricky-fail-2.rs:36:24
|
LL | panic!();
| --------- in this macro invocation
...
2019-03-09 06:03:44 -06:00
LL | () => ( struct Г; )
| ^
|
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
2018-12-25 09:56:47 -06:00
--> $DIR/local-modularized-tricky-fail-2.rs:46:24
|
LL | include!();
| ----------- in this macro invocation
...
2019-03-09 06:03:44 -06:00
LL | () => ( struct Д; )
| ^
|
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0658`.