]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/resolve-speculative-adjustment.stderr
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / resolve / resolve-speculative-adjustment.stderr
1 error[E0425]: cannot find value `field` in this scope
2   --> $DIR/resolve-speculative-adjustment.rs:17:13
3    |
4 LL |             field;
5    |             ^^^^^ not found in this scope
6
7 error[E0425]: cannot find value `field` in this scope
8   --> $DIR/resolve-speculative-adjustment.rs:23:9
9    |
10 LL |         field;
11    |         ^^^^^ help: you might have meant to use the available field: `self.field`
12
13 error[E0425]: cannot find function `method` in this scope
14   --> $DIR/resolve-speculative-adjustment.rs:25:9
15    |
16 LL |         method();
17    |         ^^^^^^ help: you might have meant to call the method: `self.method`
18
19 error[E0425]: cannot find function `method` in this scope
20   --> $DIR/resolve-speculative-adjustment.rs:19:13
21    |
22 LL |             method();
23    |             ^^^^^^ not found in this scope
24
25 error: aborting due to 4 previous errors
26
27 For more information about this error, try `rustc --explain E0425`.