]> git.lizzy.rs Git - rust.git/blob - tests/ui/dyn-star/no-unsize-coerce-dyn-trait.stderr
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / ui / dyn-star / no-unsize-coerce-dyn-trait.stderr
1 warning: the feature `dyn_star` is incomplete and may not be safe to use and/or cause compiler crashes
2   --> $DIR/no-unsize-coerce-dyn-trait.rs:1:12
3    |
4 LL | #![feature(dyn_star, trait_upcasting)]
5    |            ^^^^^^^^
6    |
7    = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
8    = note: `#[warn(incomplete_features)]` on by default
9
10 error[E0308]: mismatched types
11   --> $DIR/no-unsize-coerce-dyn-trait.rs:11:26
12    |
13 LL |     let y: Box<dyn* B> = x;
14    |            -----------   ^ expected trait `B`, found trait `A`
15    |            |
16    |            expected due to this
17    |
18    = note: expected struct `Box<dyn* B>`
19               found struct `Box<dyn* A>`
20
21 error: aborting due to previous error; 1 warning emitted
22
23 For more information about this error, try `rustc --explain E0308`.