@@ -31,40 +31,136 @@ LL | struct B(u32);
3131 | ^
3232
3333error: this ident consists of a single char
34- --> $DIR/min_ident_chars.rs:20:6
34+ --> $DIR/min_ident_chars.rs:18:8
35+ |
36+ LL | struct O {
37+ | ^
38+
39+ error: this ident consists of a single char
40+ --> $DIR/min_ident_chars.rs:19:5
41+ |
42+ LL | o: u32,
43+ | ^
44+
45+ error: this ident consists of a single char
46+ --> $DIR/min_ident_chars.rs:24:6
3547 |
3648LL | enum C {
3749 | ^
3850
3951error: this ident consists of a single char
40- --> $DIR/min_ident_chars.rs:21 :5
52+ --> $DIR/min_ident_chars.rs:25 :5
4153 |
4254LL | D,
4355 | ^
4456
4557error: this ident consists of a single char
46- --> $DIR/min_ident_chars.rs:22 :5
58+ --> $DIR/min_ident_chars.rs:26 :5
4759 |
4860LL | E,
4961 | ^
5062
5163error: this ident consists of a single char
52- --> $DIR/min_ident_chars.rs:23 :5
64+ --> $DIR/min_ident_chars.rs:27 :5
5365 |
5466LL | F,
5567 | ^
5668
5769error: this ident consists of a single char
58- --> $DIR/min_ident_chars.rs:31:5
70+ --> $DIR/min_ident_chars.rs:51:9
5971 |
60- LL | w: u32,
61- | ^
72+ LL | let h = 1;
73+ | ^
74+
75+ error: this ident consists of a single char
76+ --> $DIR/min_ident_chars.rs:52:9
77+ |
78+ LL | let e = 2;
79+ | ^
80+
81+ error: this ident consists of a single char
82+ --> $DIR/min_ident_chars.rs:53:9
83+ |
84+ LL | let l = 3;
85+ | ^
86+
87+ error: this ident consists of a single char
88+ --> $DIR/min_ident_chars.rs:54:9
89+ |
90+ LL | let l = 4;
91+ | ^
92+
93+ error: this ident consists of a single char
94+ --> $DIR/min_ident_chars.rs:55:9
95+ |
96+ LL | let o = 6;
97+ | ^
98+
99+ error: this ident consists of a single char
100+ --> $DIR/min_ident_chars.rs:59:10
101+ |
102+ LL | let (h, o, w) = (1, 2, 3);
103+ | ^
104+
105+ error: this ident consists of a single char
106+ --> $DIR/min_ident_chars.rs:59:13
107+ |
108+ LL | let (h, o, w) = (1, 2, 3);
109+ | ^
110+
111+ error: this ident consists of a single char
112+ --> $DIR/min_ident_chars.rs:60:10
113+ |
114+ LL | for (a, (r, e)) in (0..1000).enumerate().enumerate() {}
115+ | ^
116+
117+ error: this ident consists of a single char
118+ --> $DIR/min_ident_chars.rs:60:14
119+ |
120+ LL | for (a, (r, e)) in (0..1000).enumerate().enumerate() {}
121+ | ^
122+
123+ error: this ident consists of a single char
124+ --> $DIR/min_ident_chars.rs:60:17
125+ |
126+ LL | for (a, (r, e)) in (0..1000).enumerate().enumerate() {}
127+ | ^
128+
129+ error: this ident consists of a single char
130+ --> $DIR/min_ident_chars.rs:62:16
131+ |
132+ LL | while let (d, o, _i, n, g) = (true, true, false, false, true) {}
133+ | ^
134+
135+ error: this ident consists of a single char
136+ --> $DIR/min_ident_chars.rs:62:19
137+ |
138+ LL | while let (d, o, _i, n, g) = (true, true, false, false, true) {}
139+ | ^
140+
141+ error: this ident consists of a single char
142+ --> $DIR/min_ident_chars.rs:62:29
143+ |
144+ LL | while let (d, o, _i, n, g) = (true, true, false, false, true) {}
145+ | ^
146+
147+ error: this ident consists of a single char
148+ --> $DIR/min_ident_chars.rs:66:9
149+ |
150+ LL | let o = 1;
151+ | ^
152+
153+ error: this ident consists of a single char
154+ --> $DIR/min_ident_chars.rs:67:9
155+ |
156+ LL | let o = O { o };
157+ | ^
62158
63159error: this ident consists of a single char
64- --> $DIR/min_ident_chars.rs:58 :4
160+ --> $DIR/min_ident_chars.rs:80 :4
65161 |
66162LL | fn b() {}
67163 | ^
68164
69- error: aborting due to 11 previous errors
165+ error: aborting due to 27 previous errors
70166
0 commit comments