about summary refs log tree commit diff
path: root/tests/ui/impl-trait/unsized_coercion3.old.stderr
blob: 52a72b84a8dd65a209f4452eb9f287e3cb0b4b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0277]: the size for values of type `impl Trait + ?Sized` cannot be known at compilation time
  --> $DIR/unsized_coercion3.rs:15:32
   |
LL |         let y: Box<dyn Send> = x;
   |                                ^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `impl Trait + ?Sized`
   = note: required for the cast from `Box<impl Trait + ?Sized>` to `Box<dyn Send>`

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0277`.