@@ -31,40 +31,136 @@ LL | struct B(u32);
31
31
| ^
32
32
33
33
error: 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
35
47
|
36
48
LL | enum C {
37
49
| ^
38
50
39
51
error: this ident consists of a single char
40
- --> $DIR/min_ident_chars.rs:21 :5
52
+ --> $DIR/min_ident_chars.rs:25 :5
41
53
|
42
54
LL | D,
43
55
| ^
44
56
45
57
error: this ident consists of a single char
46
- --> $DIR/min_ident_chars.rs:22 :5
58
+ --> $DIR/min_ident_chars.rs:26 :5
47
59
|
48
60
LL | E,
49
61
| ^
50
62
51
63
error: this ident consists of a single char
52
- --> $DIR/min_ident_chars.rs:23 :5
64
+ --> $DIR/min_ident_chars.rs:27 :5
53
65
|
54
66
LL | F,
55
67
| ^
56
68
57
69
error: this ident consists of a single char
58
- --> $DIR/min_ident_chars.rs:31:5
70
+ --> $DIR/min_ident_chars.rs:51:9
59
71
|
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
+ | ^
62
158
63
159
error: this ident consists of a single char
64
- --> $DIR/min_ident_chars.rs:58 :4
160
+ --> $DIR/min_ident_chars.rs:80 :4
65
161
|
66
162
LL | fn b() {}
67
163
| ^
68
164
69
- error: aborting due to 11 previous errors
165
+ error: aborting due to 27 previous errors
70
166
0 commit comments