]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/resolve-speculative-adjustment.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / 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;
48663c56 11 | ^^^^^ help: you might have meant to use the available field: `self.field`
32a655c1
SL
12
13error[E0425]: cannot find function `method` in this scope
0731742a 14 --> $DIR/resolve-speculative-adjustment.rs:25:9
32a655c1 15 |
0531ce1d 16LL | method();
29967ef6 17 | ^^^^^^ help: you might have meant to call the method: `self.method`
32a655c1 18
2b03887a
FG
19error[E0425]: cannot find function `method` in this scope
20 --> $DIR/resolve-speculative-adjustment.rs:19:13
21 |
22LL | method();
23 | ^^^^^^ not found in this scope
24
041b39d2 25error: aborting due to 4 previous errors
32a655c1 26
0531ce1d 27For more information about this error, try `rustc --explain E0425`.