]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-convert-unsafe-trait-obj-box.stderr
Wording changes to object unsafe trait errors
[rust.git] / src / test / ui / wf / wf-convert-unsafe-trait-obj-box.stderr
1 error[E0038]: the trait `Trait` cannot be made into an object
2   --> $DIR/wf-convert-unsafe-trait-obj-box.rs:16:33
3    |
4 LL | trait Trait: Sized {}
5    |       -----  ----- ...because it requires `Self: Sized`
6    |       |
7    |       this trait cannot be made into an object...
8 ...
9 LL |     let t_box: Box<dyn Trait> = Box::new(S);
10    |                                 ^^^^^^^^^^^ the trait `Trait` cannot be made into an object
11    |
12    = note: required because of the requirements on the impl of `std::ops::CoerceUnsized<std::boxed::Box<dyn Trait>>` for `std::boxed::Box<S>`
13    = note: required by cast to type `std::boxed::Box<dyn Trait>`
14
15 error[E0038]: the trait `Trait` cannot be made into an object
16   --> $DIR/wf-convert-unsafe-trait-obj-box.rs:17:15
17    |
18 LL | trait Trait: Sized {}
19    |       -----  ----- ...because it requires `Self: Sized`
20    |       |
21    |       this trait cannot be made into an object...
22 ...
23 LL |     takes_box(Box::new(S));
24    |               ^^^^^^^^^^^ the trait `Trait` cannot be made into an object
25    |
26    = note: required because of the requirements on the impl of `std::ops::CoerceUnsized<std::boxed::Box<dyn Trait>>` for `std::boxed::Box<S>`
27    = note: required by cast to type `std::boxed::Box<(dyn Trait + 'static)>`
28
29 error[E0038]: the trait `Trait` cannot be made into an object
30   --> $DIR/wf-convert-unsafe-trait-obj-box.rs:15:5
31    |
32 LL | trait Trait: Sized {}
33    |       -----  ----- ...because it requires `Self: Sized`
34    |       |
35    |       this trait cannot be made into an object...
36 ...
37 LL |     Box::new(S) as Box<dyn Trait>;
38    |     ^^^^^^^^^^^ the trait `Trait` cannot be made into an object
39    |
40    = note: required because of the requirements on the impl of `std::ops::CoerceUnsized<std::boxed::Box<dyn Trait>>` for `std::boxed::Box<S>`
41    = note: required by cast to type `std::boxed::Box<dyn Trait>`
42
43 error: aborting due to 3 previous errors
44
45 For more information about this error, try `rustc --explain E0038`.