2018-08-08 07:28:26 -05:00
error[E0225]: only auto traits can be used as additional traits in a trait object
2019-05-28 13:46:13 -05:00
--> $DIR/bad-sized.rs:4:28
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let x: Vec<dyn Trait + Sized> = Vec::new();
2020-08-14 14:08:49 -05:00
| ----- ^^^^^ additional non-auto trait
| |
2019-05-28 13:46:13 -05:00
| first non-auto trait
2020-08-14 14:08:49 -05:00
|
2021-10-01 19:21:01 -05:00
= help: consider creating a new trait with all of these as supertraits and using that trait here instead: `trait NewTrait: Trait + Sized {}`
2020-08-14 14:08:49 -05:00
= note: auto-traits like `Send` and `Sync` are traits that have special properties; for more information on them, visit <https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits>
2018-08-08 07:28:26 -05:00
error[E0277]: the size for values of type `dyn Trait` cannot be known at compilation time
2018-12-25 09:56:47 -06:00
--> $DIR/bad-sized.rs:4:12
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let x: Vec<dyn Trait + Sized> = Vec::new();
| ^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
2021-06-10 06:52:00 -05:00
|
2021-07-31 11:26:55 -05:00
= help: the trait `Sized` is not implemented for `dyn Trait`
note: required by a bound in `Vec`
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
2018-08-08 07:28:26 -05:00
error[E0277]: the size for values of type `dyn Trait` cannot be known at compilation time
2019-05-28 13:46:13 -05:00
--> $DIR/bad-sized.rs:4:37
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let x: Vec<dyn Trait + Sized> = Vec::new();
| ^^^^^^^^ doesn't have a size known at compile-time
2018-08-08 07:28:26 -05:00
|
2020-09-02 02:40:56 -05:00
= help: the trait `Sized` is not implemented for `dyn Trait`
2021-10-05 18:04:09 -05:00
note: required by a bound in `Vec::<T>::new`
2021-07-17 13:13:50 -05:00
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
2018-08-08 07:28:26 -05:00
2021-03-13 10:14:18 -06:00
error[E0277]: the size for values of type `dyn Trait` cannot be known at compilation time
--> $DIR/bad-sized.rs:4:37
|
LL | let x: Vec<dyn Trait + Sized> = Vec::new();
| ^^^ doesn't have a size known at compile-time
2021-06-10 06:52:00 -05:00
|
2021-07-31 11:26:55 -05:00
= help: the trait `Sized` is not implemented for `dyn Trait`
note: required by a bound in `Vec`
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
2021-03-13 10:14:18 -06:00
error: aborting due to 4 previous errors
2018-08-08 07:28:26 -05:00
2019-04-17 12:26:38 -05:00
Some errors have detailed explanations: E0225, E0277.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0225`.