]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/local-modularized-tricky-fail-2.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / imports / local-modularized-tricky-fail-2.stderr
1 error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
2   --> $DIR/local-modularized-tricky-fail-2.rs:20:32
3    |
4 LL | exported!();
5    | ------------ in this macro invocation
6 ...
7 LL |                 () => ( struct Б; ) //~ ERROR non-ascii idents are not fully supported
8    |                                ^
9    |
10    = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
11
12 error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
13   --> $DIR/local-modularized-tricky-fail-2.rs:36:24
14    |
15 LL |     panic!();
16    |     --------- in this macro invocation
17 ...
18 LL |         () => ( struct Г; ) //~ ERROR non-ascii idents are not fully supported
19    |                        ^
20    |
21    = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
22
23 error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
24   --> $DIR/local-modularized-tricky-fail-2.rs:46:24
25    |
26 LL | include!();
27    | ----------- in this macro invocation
28 ...
29 LL |         () => ( struct Д; ) //~ ERROR non-ascii idents are not fully supported
30    |                        ^
31    |
32    = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
33
34 error: aborting due to 3 previous errors
35
36 For more information about this error, try `rustc --explain E0658`.