@@ -26,7 +26,12 @@ error[E0425]: cannot find value `bah` in this scope
26
26
--> $DIR/issue-14254.rs:36:9
27
27
|
28
28
LL | bah;
29
- | ^^^ help: you might have meant to call the associated function: `Self::bah`
29
+ | ^^^
30
+ |
31
+ help: you might have meant to refer to the associated function
32
+ |
33
+ LL | Self::bah;
34
+ | ~~~~~~~~~
30
35
31
36
error[E0425]: cannot find value `b` in this scope
32
37
--> $DIR/issue-14254.rs:38:9
@@ -56,7 +61,12 @@ error[E0425]: cannot find value `bah` in this scope
56
61
--> $DIR/issue-14254.rs:53:9
57
62
|
58
63
LL | bah;
59
- | ^^^ help: you might have meant to call the associated function: `Self::bah`
64
+ | ^^^
65
+ |
66
+ help: you might have meant to refer to the associated function
67
+ |
68
+ LL | Self::bah;
69
+ | ~~~~~~~~~
60
70
61
71
error[E0425]: cannot find value `b` in this scope
62
72
--> $DIR/issue-14254.rs:55:9
@@ -68,31 +78,56 @@ error[E0425]: cannot find value `bah` in this scope
68
78
--> $DIR/issue-14254.rs:64:9
69
79
|
70
80
LL | bah;
71
- | ^^^ help: you might have meant to call the associated function: `Self::bah`
81
+ | ^^^
82
+ |
83
+ help: you might have meant to refer to the associated function
84
+ |
85
+ LL | Self::bah;
86
+ | ~~~~~~~~~
72
87
73
88
error[E0425]: cannot find value `bah` in this scope
74
89
--> $DIR/issue-14254.rs:73:9
75
90
|
76
91
LL | bah;
77
- | ^^^ help: you might have meant to call the associated function: `Self::bah`
92
+ | ^^^
93
+ |
94
+ help: you might have meant to refer to the associated function
95
+ |
96
+ LL | Self::bah;
97
+ | ~~~~~~~~~
78
98
79
99
error[E0425]: cannot find value `bah` in this scope
80
100
--> $DIR/issue-14254.rs:82:9
81
101
|
82
102
LL | bah;
83
- | ^^^ help: you might have meant to call the associated function: `Self::bah`
103
+ | ^^^
104
+ |
105
+ help: you might have meant to refer to the associated function
106
+ |
107
+ LL | Self::bah;
108
+ | ~~~~~~~~~
84
109
85
110
error[E0425]: cannot find value `bah` in this scope
86
111
--> $DIR/issue-14254.rs:91:9
87
112
|
88
113
LL | bah;
89
- | ^^^ help: you might have meant to call the associated function: `Self::bah`
114
+ | ^^^
115
+ |
116
+ help: you might have meant to refer to the associated function
117
+ |
118
+ LL | Self::bah;
119
+ | ~~~~~~~~~
90
120
91
121
error[E0425]: cannot find value `bah` in this scope
92
122
--> $DIR/issue-14254.rs:100:9
93
123
|
94
124
LL | bah;
95
- | ^^^ help: you might have meant to call the associated function: `Self::bah`
125
+ | ^^^
126
+ |
127
+ help: you might have meant to refer to the associated function
128
+ |
129
+ LL | Self::bah;
130
+ | ~~~~~~~~~
96
131
97
132
error[E0425]: cannot find function `baz` in this scope
98
133
--> $DIR/issue-14254.rs:19:9
0 commit comments