]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.stderr
Auto merge of #38856 - zackw:process-envs, r=aturon
[rust.git] / src / test / ui / resolve / suggest-path-instead-of-mod-dot-item.stderr
1 error[E0423]: expected value, found module `a`
2   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:27:5
3    |
4 27 |     a.I
5    |     ^ did you mean `a::I`?
6
7 error[E0423]: expected value, found module `a`
8   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:33:5
9    |
10 33 |     a.g()
11    |     ^ did you mean `a::g(...)`?
12
13 error[E0423]: expected value, found module `a`
14   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:39:5
15    |
16 39 |     a.b.J
17    |     ^ did you mean `a::b`?
18
19 error[E0423]: expected value, found module `a::b`
20   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:45:5
21    |
22 45 |     a::b.J
23    |     ^^^^ did you mean `a::b::J`?
24
25 error[E0423]: expected value, found module `a`
26   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:51:5
27    |
28 51 |     a.b.f();
29    |     ^ did you mean `a::b`?
30
31 error[E0423]: expected value, found module `a::b`
32   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:55:12
33    |
34 55 |     v.push(a::b);
35    |            ^^^^ did you mean `a::I`?
36
37 error[E0423]: expected value, found module `a::b`
38   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:61:5
39    |
40 61 |     a::b.f()
41    |     ^^^^ did you mean `a::b::f(...)`?
42
43 error[E0423]: expected value, found module `a::b`
44   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:67:5
45    |
46 67 |     a::b
47    |     ^^^^ did you mean `a::I`?
48
49 error[E0423]: expected function, found module `a::b`
50   --> $DIR/suggest-path-instead-of-mod-dot-item.rs:73:5
51    |
52 73 |     a::b()
53    |     ^^^^ did you mean `a::I`?
54
55 error: main function not found
56
57 error: aborting due to 10 previous errors
58