]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/resolve-speculative-adjustment.stderr
New upstream version 1.20.0+dfsg1
[rustc.git] / src / test / ui / resolve / resolve-speculative-adjustment.stderr
CommitLineData
32a655c1
SL
1error[E0425]: cannot find value `field` in this scope
2 --> $DIR/resolve-speculative-adjustment.rs:27:13
3 |
427 | field;
5 | ^^^^^ not found in this scope
6
7error[E0425]: cannot find function `method` in this scope
8 --> $DIR/resolve-speculative-adjustment.rs:30:13
9 |
1030 | method();
11 | ^^^^^^ not found in this scope
12
13error[E0425]: cannot find value `field` in this scope
14 --> $DIR/resolve-speculative-adjustment.rs:35:9
15 |
1635 | field;
041b39d2 17 | ^^^^^ help: try: `self.field`
32a655c1
SL
18
19error[E0425]: cannot find function `method` in this scope
20 --> $DIR/resolve-speculative-adjustment.rs:38:9
21 |
2238 | method();
041b39d2 23 | ^^^^^^ help: try: `self.method`
32a655c1 24
041b39d2 25error: aborting due to 4 previous errors
32a655c1 26