]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-38604.stderr
Wording changes to object unsafe trait errors
[rust.git] / src / test / ui / issues / issue-38604.stderr
1 error[E0038]: the trait `Foo` cannot be made into an object
2   --> $DIR/issue-38604.rs:14:13
3    |
4 LL |     let _f: Box<dyn Foo> =
5    |             ^^^^^^^^^^^^ the trait `Foo` cannot be made into an object
6    |
7    = note: the trait cannot be made into an object because it cannot use `Self` as a type parameter in the supertraits or `where`-clauses
8
9 error[E0038]: the trait `Foo` cannot be made into an object
10   --> $DIR/issue-38604.rs:15:9
11    |
12 LL |         Box::new(());
13    |         ^^^^^^^^^^^^ the trait `Foo` cannot be made into an object
14    |
15    = note: the trait cannot be made into an object because it cannot use `Self` as a type parameter in the supertraits or `where`-clauses
16    = note: required because of the requirements on the impl of `std::ops::CoerceUnsized<std::boxed::Box<dyn Foo>>` for `std::boxed::Box<()>`
17    = note: required by cast to type `std::boxed::Box<dyn Foo>`
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0038`.