]> git.proxmox.com Git - rustc.git/blob - src/test/ui/feature-gate-non_ascii_idents.stderr
New upstream version 1.25.0+dfsg1
[rustc.git] / src / test / ui / feature-gate-non_ascii_idents.stderr
1 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
2 --> $DIR/feature-gate-non_ascii_idents.rs:11:1
3 |
4 11 | extern crate core as bäz; //~ ERROR non-ascii idents
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
8
9 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
10 --> $DIR/feature-gate-non_ascii_idents.rs:13:5
11 |
12 13 | use föö::bar; //~ ERROR non-ascii idents
13 | ^^^^^^^^
14 |
15 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
16
17 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
18 --> $DIR/feature-gate-non_ascii_idents.rs:15:1
19 |
20 15 | mod föö { //~ ERROR non-ascii idents
21 | ^^^^^^^
22 |
23 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
24
25 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
26 --> $DIR/feature-gate-non_ascii_idents.rs:19:1
27 |
28 19 | / fn bär( //~ ERROR non-ascii idents
29 20 | | bäz: isize //~ ERROR non-ascii idents
30 21 | | ) {
31 22 | | let _ö: isize; //~ ERROR non-ascii idents
32 ... |
33 26 | | }
34 27 | | }
35 | |_^
36 |
37 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
38
39 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
40 --> $DIR/feature-gate-non_ascii_idents.rs:20:5
41 |
42 20 | bäz: isize //~ ERROR non-ascii idents
43 | ^^^
44 |
45 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
46
47 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
48 --> $DIR/feature-gate-non_ascii_idents.rs:22:9
49 |
50 22 | let _ö: isize; //~ ERROR non-ascii idents
51 | ^^
52 |
53 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
54
55 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
56 --> $DIR/feature-gate-non_ascii_idents.rs:25:10
57 |
58 25 | (_ä, _) => {} //~ ERROR non-ascii idents
59 | ^^
60 |
61 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
62
63 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
64 --> $DIR/feature-gate-non_ascii_idents.rs:29:1
65 |
66 29 | struct Föö { //~ ERROR non-ascii idents
67 | ^^^^^^^^^^
68 |
69 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
70
71 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
72 --> $DIR/feature-gate-non_ascii_idents.rs:30:5
73 |
74 30 | föö: isize //~ ERROR non-ascii idents
75 | ^^^^^^^^^^
76 |
77 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
78
79 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
80 --> $DIR/feature-gate-non_ascii_idents.rs:33:1
81 |
82 33 | enum Bär { //~ ERROR non-ascii idents
83 | ^^^^^^^^
84 |
85 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
86
87 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
88 --> $DIR/feature-gate-non_ascii_idents.rs:34:5
89 |
90 34 | Bäz { //~ ERROR non-ascii idents
91 | ^^^
92 |
93 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
94
95 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
96 --> $DIR/feature-gate-non_ascii_idents.rs:35:9
97 |
98 35 | qüx: isize //~ ERROR non-ascii idents
99 | ^^^^^^^^^^
100 |
101 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
102
103 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
104 --> $DIR/feature-gate-non_ascii_idents.rs:40:5
105 |
106 40 | fn qüx(); //~ ERROR non-ascii idents
107 | ^^^^^^^^^
108 |
109 = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
110
111 error: aborting due to 13 previous errors
112