]> git.proxmox.com Git - rustc.git/blame - tests/ui/resolve/resolve-speculative-adjustment.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / resolve / resolve-speculative-adjustment.stderr
CommitLineData
32a655c1 1error[E0425]: cannot find value `field` in this scope
0731742a 2 --> $DIR/resolve-speculative-adjustment.rs:17:13
32a655c1 3 |
0531ce1d 4LL | field;
32a655c1
SL
5 | ^^^^^ not found in this scope
6
32a655c1 7error[E0425]: cannot find value `field` in this scope
0731742a 8 --> $DIR/resolve-speculative-adjustment.rs:23:9
32a655c1 9 |
0531ce1d 10LL | field;
781aab86
FG
11 | ^^^^^
12 |
13help: you might have meant to use the available field
14 |
15LL | self.field;
16 | +++++
32a655c1
SL
17
18error[E0425]: cannot find function `method` in this scope
0731742a 19 --> $DIR/resolve-speculative-adjustment.rs:25:9
32a655c1 20 |
0531ce1d 21LL | method();
781aab86
FG
22 | ^^^^^^
23 |
24help: you might have meant to call the method
25 |
26LL | self.method();
27 | +++++
32a655c1 28
2b03887a
FG
29error[E0425]: cannot find function `method` in this scope
30 --> $DIR/resolve-speculative-adjustment.rs:19:13
31 |
32LL | method();
33 | ^^^^^^ not found in this scope
34
041b39d2 35error: aborting due to 4 previous errors
32a655c1 36
0531ce1d 37For more information about this error, try `rustc --explain E0425`.