summary refs log tree commit diff
path: root/src/test/ui/resolve/suggest-path-instead-of-mod-dot-item.stderr
blob: 9216c0b32192930b02f3a29ea842813bced0ffd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
error[E0423]: expected value, found module `a`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:27:5
   |
LL |     a.I
   |     ^--
   |     |
   |     did you mean `a::I`?

error[E0423]: expected value, found module `a`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:32:5
   |
LL |     a.g()
   |     ^----
   |     |
   |     did you mean `a::g(...)`?

error[E0423]: expected value, found module `a`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:37:5
   |
LL |     a.b.J
   |     ^--
   |     |
   |     did you mean `a::b`?

error[E0423]: expected value, found module `a::b`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:42:5
   |
LL |     a::b.J
   |     ^^^---
   |     |  |
   |     |  did you mean `I`?
   |     did you mean `a::b::J`?

error[E0423]: expected value, found module `a`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:47:5
   |
LL |     a.b.f();
   |     ^--
   |     |
   |     did you mean `a::b`?

error[E0423]: expected value, found module `a::b`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:50:12
   |
LL |     v.push(a::b);
   |            ^^^-
   |               |
   |               did you mean `I`?

error[E0423]: expected value, found module `a::b`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:55:5
   |
LL |     a::b.f()
   |     ^^^-----
   |     |  |
   |     |  did you mean `I`?
   |     did you mean `a::b::f(...)`?

error[E0423]: expected value, found module `a::b`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:60:5
   |
LL |     a::b
   |     ^^^-
   |        |
   |        did you mean `I`?

error[E0423]: expected function, found module `a::b`
  --> $DIR/suggest-path-instead-of-mod-dot-item.rs:65:5
   |
LL |     a::b()
   |     ^^^-
   |        |
   |        did you mean `I`?

error: aborting due to 9 previous errors

For more information about this error, try `rustc --explain E0423`.