]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unsized/issue-71659.stderr
Merge remote-tracking branch 'origin/master' into mpk/add-long-error-message-for...
[rust.git] / src / test / ui / unsized / issue-71659.stderr
1 error[E0277]: the trait bound `dyn Foo: CastTo<[i32]>` is not satisfied
2   --> $DIR/issue-71659.rs:30:13
3    |
4 LL |     let x = x.cast::<[i32]>();
5    |             ^ ---- required by a bound introduced by this call
6    |             |
7    |             the trait `CastTo<[i32]>` is not implemented for `dyn Foo`
8    |
9 note: required by a bound in `Cast::cast`
10   --> $DIR/issue-71659.rs:19:15
11    |
12 LL |     fn cast<T: ?Sized>(&self) -> &T
13    |        ---- required by a bound in this
14 LL |     where
15 LL |         Self: CastTo<T>,
16    |               ^^^^^^^^^ required by this bound in `Cast::cast`
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0277`.