]> git.lizzy.rs Git - rust.git/blob - src/test/ui/self/suggest-self.stderr
Auto merge of #54043 - fintelia:raw_entry, r=alexcrichton
[rust.git] / src / test / ui / self / suggest-self.stderr
1 error[E0425]: cannot find value `this` in this scope
2   --> $DIR/suggest-self.rs:31:9
3    |
4 LL |         this.x
5    |         ^^^^
6    |         |
7    |         not found in this scope
8    |         help: did you mean: `self`
9
10 error[E0425]: cannot find value `this` in this scope
11   --> $DIR/suggest-self.rs:36:9
12    |
13 LL |         this.foo()
14    |         ^^^^
15    |         |
16    |         not found in this scope
17    |         help: did you mean: `self`
18
19 error[E0425]: cannot find value `my` in this scope
20   --> $DIR/suggest-self.rs:41:9
21    |
22 LL |         my.bar()
23    |         ^^
24    |         |
25    |         not found in this scope
26    |         help: did you mean: `self`
27
28 error: aborting due to 3 previous errors
29
30 For more information about this error, try `rustc --explain E0425`.