]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.stderr
New upstream version 1.17.0+dfsg1
[rustc.git] / src / test / ui / resolve / suggest-path-instead-of-mod-dot-item.stderr
CommitLineData
32a655c1
SL
1error[E0423]: expected value, found module `a`
2 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:27:5
3 |
427 | a.I
8bb4bdeb
XL
5 | ^--
6 | |
7 | did you mean `a::I`?
32a655c1
SL
8
9error[E0423]: expected value, found module `a`
10 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:33:5
11 |
1233 | a.g()
8bb4bdeb
XL
13 | ^----
14 | |
15 | did you mean `a::g(...)`?
32a655c1
SL
16
17error[E0423]: expected value, found module `a`
18 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:39:5
19 |
2039 | a.b.J
8bb4bdeb
XL
21 | ^--
22 | |
23 | did you mean `a::b`?
32a655c1
SL
24
25error[E0423]: expected value, found module `a::b`
26 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:45:5
27 |
2845 | a::b.J
8bb4bdeb
XL
29 | ^^^^--
30 | |
31 | did you mean `a::b::J`?
32a655c1
SL
32
33error[E0423]: expected value, found module `a`
34 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:51:5
35 |
3651 | a.b.f();
8bb4bdeb
XL
37 | ^--
38 | |
39 | did you mean `a::b`?
32a655c1
SL
40
41error[E0423]: expected value, found module `a::b`
42 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:55:12
43 |
4455 | v.push(a::b);
8bb4bdeb
XL
45 | ^^^-
46 | |
47 | did you mean `I`?
32a655c1
SL
48
49error[E0423]: expected value, found module `a::b`
50 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:61:5
51 |
5261 | a::b.f()
8bb4bdeb
XL
53 | ^^^^----
54 | |
55 | did you mean `a::b::f(...)`?
32a655c1
SL
56
57error[E0423]: expected value, found module `a::b`
58 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:67:5
59 |
6067 | a::b
8bb4bdeb
XL
61 | ^^^-
62 | |
63 | did you mean `I`?
32a655c1
SL
64
65error[E0423]: expected function, found module `a::b`
66 --> $DIR/suggest-path-instead-of-mod-dot-item.rs:73:5
67 |
6873 | a::b()
8bb4bdeb
XL
69 | ^^^-
70 | |
71 | did you mean `I`?
32a655c1
SL
72
73error: main function not found
74
75error: aborting due to 10 previous errors
76