]> git.proxmox.com Git - rustc.git/blob - src/test/ui/resolve/resolve-speculative-adjustment.stderr
New upstream version 1.19.0+dfsg1
[rustc.git] / src / test / ui / resolve / resolve-speculative-adjustment.stderr
1 error[E0425]: cannot find value `field` in this scope
2 --> $DIR/resolve-speculative-adjustment.rs:27:13
3 |
4 27 | field;
5 | ^^^^^ not found in this scope
6
7 error[E0425]: cannot find function `method` in this scope
8 --> $DIR/resolve-speculative-adjustment.rs:30:13
9 |
10 30 | method();
11 | ^^^^^^ not found in this scope
12
13 error[E0425]: cannot find value `field` in this scope
14 --> $DIR/resolve-speculative-adjustment.rs:35:9
15 |
16 35 | field;
17 | ^^^^^ did you mean `self.field`?
18
19 error[E0425]: cannot find function `method` in this scope
20 --> $DIR/resolve-speculative-adjustment.rs:38:9
21 |
22 38 | method();
23 | ^^^^^^ did you mean `self.method(...)`?
24
25 error: aborting due to previous error(s)
26