]> git.proxmox.com Git - rustc.git/blame - src/test/ui/self/suggest-self.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / self / suggest-self.stderr
CommitLineData
0bf4aa26 1error[E0425]: cannot find value `this` in this scope
0731742a 2 --> $DIR/suggest-self.rs:21:9
0bf4aa26
XL
3 |
4LL | this.x
5 | ^^^^
6 | |
7 | not found in this scope
f035d41b 8 | help: you might have meant to use `self` here instead
0bf4aa26
XL
9
10error[E0425]: cannot find value `this` in this scope
0731742a 11 --> $DIR/suggest-self.rs:26:9
0bf4aa26
XL
12 |
13LL | this.foo()
14 | ^^^^
15 | |
16 | not found in this scope
f035d41b 17 | help: you might have meant to use `self` here instead
0bf4aa26
XL
18
19error[E0425]: cannot find value `my` in this scope
0731742a 20 --> $DIR/suggest-self.rs:31:9
0bf4aa26
XL
21 |
22LL | my.bar()
23 | ^^
24 | |
25 | not found in this scope
f035d41b 26 | help: you might have meant to use `self` here instead
0bf4aa26
XL
27
28error: aborting due to 3 previous errors
29
30For more information about this error, try `rustc --explain E0425`.