@@ -2,19 +2,34 @@ error[E0423]: expected value, found module `a`
2
2
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:17:5
3
3
|
4
4
LL | a.I
5
- | ^- help: use the path separator to refer to an item: `::`
5
+ | ^
6
+ |
7
+ help: use the path separator to refer to an item
8
+ |
9
+ LL | a::I
10
+ | ~~
6
11
7
12
error[E0423]: expected value, found module `a`
8
13
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:23:5
9
14
|
10
15
LL | a.g()
11
- | ^- help: use the path separator to refer to an item: `::`
16
+ | ^
17
+ |
18
+ help: use the path separator to refer to an item
19
+ |
20
+ LL | a::g()
21
+ | ~~
12
22
13
23
error[E0423]: expected value, found module `a`
14
24
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:29:5
15
25
|
16
26
LL | a.b.J
17
- | ^- help: use the path separator to refer to an item: `::`
27
+ | ^
28
+ |
29
+ help: use the path separator to refer to an item
30
+ |
31
+ LL | a::b.J
32
+ | ~~
18
33
19
34
error[E0423]: expected value, found module `a::b`
20
35
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:35:5
@@ -38,7 +53,12 @@ error[E0423]: expected value, found module `a`
38
53
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:42:5
39
54
|
40
55
LL | a.b.f();
41
- | ^- help: use the path separator to refer to an item: `::`
56
+ | ^
57
+ |
58
+ help: use the path separator to refer to an item
59
+ |
60
+ LL | a::b.f();
61
+ | ~~
42
62
43
63
error[E0423]: expected value, found module `a::b`
44
64
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:46:12
@@ -117,23 +137,31 @@ error[E0423]: expected value, found module `a`
117
137
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:80:9
118
138
|
119
139
LL | a.f()
120
- | ^- help: use the path separator to refer to an item: `::`
140
+ | ^
121
141
...
122
142
LL | let _ = create!(method);
123
143
| --------------- in this macro invocation
124
144
|
125
145
= note: this error originates in the macro `create` (in Nightly builds, run with -Z macro-backtrace for more info)
146
+ help: use the path separator to refer to an item
147
+ |
148
+ LL | a::f()
149
+ | ~~
126
150
127
151
error[E0423]: expected value, found module `a`
128
152
--> $DIR/suggest-path-instead-of-mod-dot-item.rs:85:9
129
153
|
130
154
LL | a.f
131
- | ^- help: use the path separator to refer to an item: `::`
155
+ | ^
132
156
...
133
157
LL | let _ = create!(field);
134
158
| -------------- in this macro invocation
135
159
|
136
160
= note: this error originates in the macro `create` (in Nightly builds, run with -Z macro-backtrace for more info)
161
+ help: use the path separator to refer to an item
162
+ |
163
+ LL | a::f
164
+ | ~~
137
165
138
166
error: aborting due to 13 previous errors
139
167
0 commit comments