]> git.lizzy.rs Git - rust.git/blob - tests/ui/self/point-at-arbitrary-self-type-trait-method.stderr
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / self / point-at-arbitrary-self-type-trait-method.stderr
1 error[E0599]: no method named `foo` found for struct `A` in the current scope
2   --> $DIR/point-at-arbitrary-self-type-trait-method.rs:9:7
3    |
4 LL | trait B { fn foo(self: Box<Self>); }
5    |              ---       --------- the method might not be found because of this arbitrary self type
6    |              |
7    |              the method is available for `Box<A>` here
8 LL | struct A;
9    | -------- method `foo` not found for this struct
10 ...
11 LL |     A.foo()
12    |       ^^^ method not found in `A`
13    |
14 help: consider wrapping the receiver expression with the appropriate type
15    |
16 LL |     Box::new(A).foo()
17    |     +++++++++ +
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0599`.