2018-08-08 14:28:26 +02:00
error[E0225]: only auto traits can be used as additional traits in a trait object
2024-12-04 02:04:26 +00:00
--> $DIR/bad-sized.rs:4:20
2018-08-08 14:28:26 +02:00
|
2019-05-28 14:46:13 -04:00
LL | let x: Vec<dyn Trait + Sized> = Vec::new();
2024-12-04 02:04:26 +00:00
| ^^^^^ ----- first non-auto trait
2020-08-14 12:08:49 -07:00
| |
2024-12-04 02:04:26 +00:00
| additional non-auto trait
2020-08-14 12:08:49 -07:00
|
2024-12-04 02:04:26 +00:00
= help: consider creating a new trait with all of these as supertraits and using that trait here instead: `trait NewTrait: Sized + Trait {}`
2020-08-14 12:08:49 -07: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 14:28:26 +02:00
2024-11-23 18:07:22 +00:00
error: aborting due to 1 previous error
2018-08-08 14:28:26 +02:00
2024-11-23 18:07:22 +00:00
For more information about this error, try `rustc --explain E0225`.