]> git.lizzy.rs Git - rust.git/blob - tests/ui/self/suggest-self-2.stderr
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / ui / self / suggest-self-2.stderr
1 error[E0425]: cannot find function `bar` in this scope
2   --> $DIR/suggest-self-2.rs:5:9
3    |
4 LL |         bar(self);
5    |         ^^^------
6    |         |
7    |         help: try calling `bar` as a method: `self.bar()`
8
9 error[E0425]: cannot find function `bar` in this scope
10   --> $DIR/suggest-self-2.rs:9:9
11    |
12 LL |         bar(&&self, 102);
13    |         ^^^-------------
14    |         |
15    |         help: try calling `bar` as a method: `self.bar(102)`
16
17 error[E0425]: cannot find function `bar` in this scope
18   --> $DIR/suggest-self-2.rs:13:9
19    |
20 LL |         bar(&mut self, 102, &"str");
21    |         ^^^------------------------
22    |         |
23    |         help: try calling `bar` as a method: `self.bar(102, &"str")`
24
25 error[E0425]: cannot find function `bar` in this scope
26   --> $DIR/suggest-self-2.rs:17:9
27    |
28 LL |         bar();
29    |         ^^^ not found in this scope
30
31 error[E0599]: no method named `bar` found for reference `&Foo` in the current scope
32   --> $DIR/suggest-self-2.rs:20:14
33    |
34 LL |         self.bar();
35    |              ^^^ method not found in `&Foo`
36
37 error: aborting due to 5 previous errors
38
39 Some errors have detailed explanations: E0425, E0599.
40 For more information about an error, try `rustc --explain E0425`.