]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-14254.stderr
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / resolve / issue-14254.stderr
1 error[E0425]: cannot find value `a` in this scope
2   --> $DIR/issue-14254.rs:21:9
3    |
4 LL |         a;
5    |         ^ not found in this scope
6
7 error[E0425]: cannot find value `x` in this scope
8   --> $DIR/issue-14254.rs:30:9
9    |
10 LL |         x;
11    |         ^ help: you might have meant to use the available field: `self.x`
12
13 error[E0425]: cannot find value `y` in this scope
14   --> $DIR/issue-14254.rs:32:9
15    |
16 LL |         y;
17    |         ^ help: you might have meant to use the available field: `self.y`
18
19 error[E0425]: cannot find value `a` in this scope
20   --> $DIR/issue-14254.rs:34:9
21    |
22 LL |         a;
23    |         ^ not found in this scope
24
25 error[E0425]: cannot find value `bah` in this scope
26   --> $DIR/issue-14254.rs:36:9
27    |
28 LL |         bah;
29    |         ^^^
30    |
31 help: you might have meant to refer to the associated function
32    |
33 LL |         Self::bah;
34    |         ~~~~~~~~~
35
36 error[E0425]: cannot find value `b` in this scope
37   --> $DIR/issue-14254.rs:38:9
38    |
39 LL |         b;
40    |         ^ not found in this scope
41
42 error[E0425]: cannot find value `x` in this scope
43   --> $DIR/issue-14254.rs:47:9
44    |
45 LL |         x;
46    |         ^ help: you might have meant to use the available field: `self.x`
47
48 error[E0425]: cannot find value `y` in this scope
49   --> $DIR/issue-14254.rs:49:9
50    |
51 LL |         y;
52    |         ^ help: you might have meant to use the available field: `self.y`
53
54 error[E0425]: cannot find value `a` in this scope
55   --> $DIR/issue-14254.rs:51:9
56    |
57 LL |         a;
58    |         ^ not found in this scope
59
60 error[E0425]: cannot find value `bah` in this scope
61   --> $DIR/issue-14254.rs:53:9
62    |
63 LL |         bah;
64    |         ^^^
65    |
66 help: you might have meant to refer to the associated function
67    |
68 LL |         Self::bah;
69    |         ~~~~~~~~~
70
71 error[E0425]: cannot find value `b` in this scope
72   --> $DIR/issue-14254.rs:55:9
73    |
74 LL |         b;
75    |         ^ not found in this scope
76
77 error[E0425]: cannot find value `bah` in this scope
78   --> $DIR/issue-14254.rs:64:9
79    |
80 LL |         bah;
81    |         ^^^
82    |
83 help: you might have meant to refer to the associated function
84    |
85 LL |         Self::bah;
86    |         ~~~~~~~~~
87
88 error[E0425]: cannot find value `bah` in this scope
89   --> $DIR/issue-14254.rs:73:9
90    |
91 LL |         bah;
92    |         ^^^
93    |
94 help: you might have meant to refer to the associated function
95    |
96 LL |         Self::bah;
97    |         ~~~~~~~~~
98
99 error[E0425]: cannot find value `bah` in this scope
100   --> $DIR/issue-14254.rs:82:9
101    |
102 LL |         bah;
103    |         ^^^
104    |
105 help: you might have meant to refer to the associated function
106    |
107 LL |         Self::bah;
108    |         ~~~~~~~~~
109
110 error[E0425]: cannot find value `bah` in this scope
111   --> $DIR/issue-14254.rs:91:9
112    |
113 LL |         bah;
114    |         ^^^
115    |
116 help: you might have meant to refer to the associated function
117    |
118 LL |         Self::bah;
119    |         ~~~~~~~~~
120
121 error[E0425]: cannot find value `bah` in this scope
122   --> $DIR/issue-14254.rs:100:9
123    |
124 LL |         bah;
125    |         ^^^
126    |
127 help: you might have meant to refer to the associated function
128    |
129 LL |         Self::bah;
130    |         ~~~~~~~~~
131
132 error[E0425]: cannot find function `baz` in this scope
133   --> $DIR/issue-14254.rs:19:9
134    |
135 LL |         baz();
136    |         ^^^ help: you might have meant to call the method: `self.baz`
137
138 error[E0425]: cannot find function `baz` in this scope
139   --> $DIR/issue-14254.rs:28:9
140    |
141 LL |         baz();
142    |         ^^^ help: you might have meant to call the method: `self.baz`
143
144 error[E0425]: cannot find function `baz` in this scope
145   --> $DIR/issue-14254.rs:45:9
146    |
147 LL |         baz();
148    |         ^^^ help: you might have meant to call the method: `self.baz`
149
150 error[E0425]: cannot find function `baz` in this scope
151   --> $DIR/issue-14254.rs:62:9
152    |
153 LL |         baz();
154    |         ^^^ help: you might have meant to call the method: `self.baz`
155
156 error[E0425]: cannot find function `baz` in this scope
157   --> $DIR/issue-14254.rs:71:9
158    |
159 LL |         baz();
160    |         ^^^ help: you might have meant to call the method: `self.baz`
161
162 error[E0425]: cannot find function `baz` in this scope
163   --> $DIR/issue-14254.rs:80:9
164    |
165 LL |         baz();
166    |         ^^^ help: you might have meant to call the method: `self.baz`
167
168 error[E0425]: cannot find function `baz` in this scope
169   --> $DIR/issue-14254.rs:89:9
170    |
171 LL |         baz();
172    |         ^^^ help: you might have meant to call the method: `self.baz`
173
174 error[E0425]: cannot find function `baz` in this scope
175   --> $DIR/issue-14254.rs:98:9
176    |
177 LL |         baz();
178    |         ^^^ help: you might have meant to call the method: `self.baz`
179
180 error: aborting due to 24 previous errors
181
182 For more information about this error, try `rustc --explain E0425`.