2019-01-06 15:33:05 +00:00
error: `?Trait` is not permitted in trait object types
2020-03-07 11:54:31 +00:00
--> $DIR/trait-object-trait-parens.rs:8:24
2019-01-06 15:33:05 +00:00
|
2020-03-07 11:54:31 +00:00
LL | let _: Box<(Obj) + (?Sized) + (for<'a> Trait<'a>)>;
| ^^^^^^^^
2019-01-06 15:33:05 +00:00
error: `?Trait` is not permitted in trait object types
2021-04-16 09:06:51 +00:00
--> $DIR/trait-object-trait-parens.rs:13:16
2019-01-06 15:33:05 +00:00
|
2021-04-16 09:06:51 +00:00
LL | let _: Box<?Sized + (for<'a> Trait<'a>) + (Obj)>;
| ^^^^^^
2020-03-07 11:54:31 +00:00
error: `?Trait` is not permitted in trait object types
2021-04-16 09:06:51 +00:00
--> $DIR/trait-object-trait-parens.rs:18:44
2020-03-07 11:54:31 +00:00
|
2021-04-16 09:06:51 +00:00
LL | let _: Box<for<'a> Trait<'a> + (Obj) + (?Sized)>;
| ^^^^^^^^
2019-01-06 15:33:05 +00:00
2019-05-28 18:45:27 +00:00
warning: trait objects without an explicit `dyn` are deprecated
2020-03-07 11:54:31 +00:00
--> $DIR/trait-object-trait-parens.rs:8:16
2019-05-28 18:45:27 +00:00
|
2020-03-07 11:54:31 +00:00
LL | let _: Box<(Obj) + (?Sized) + (for<'a> Trait<'a>)>;
2021-11-01 09:01:42 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-05-28 18:45:27 +00:00
|
2021-06-16 12:27:44 +00:00
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
2021-08-09 15:45:01 +00:00
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
2022-09-18 15:55:36 +00:00
= note: `#[warn(bare_trait_objects)]` on by default
2021-11-01 09:01:42 +00:00
help: use `dyn`
|
2022-09-11 19:19:07 +00:00
LL | let _: Box<dyn (Obj) + (?Sized) + (for<'a> Trait<'a>)>;
| +++
2019-05-28 18:45:27 +00:00
2020-03-07 11:54:31 +00:00
error[E0225]: only auto traits can be used as additional traits in a trait object
--> $DIR/trait-object-trait-parens.rs:8:35
|
LL | let _: Box<(Obj) + (?Sized) + (for<'a> Trait<'a>)>;
2020-08-14 19:08:49 +00:00
| ----- ^^^^^^^^^^^^^^^^^^^ additional non-auto trait
| |
2020-03-07 11:54:31 +00:00
| first non-auto trait
2020-08-14 19:08:49 +00:00
|
2021-10-02 00:21:01 +00:00
= help: consider creating a new trait with all of these as supertraits and using that trait here instead: `trait NewTrait: Obj + for<'a> Trait<'a> {}`
2020-08-14 19:08:49 +00: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>
2020-03-07 11:54:31 +00:00
2021-07-10 08:00:54 +00:00
warning: trait objects without an explicit `dyn` are deprecated
--> $DIR/trait-object-trait-parens.rs:13:16
|
LL | let _: Box<?Sized + (for<'a> Trait<'a>) + (Obj)>;
2021-11-01 09:01:42 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-07-10 08:00:54 +00:00
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
2021-11-01 09:01:42 +00:00
help: use `dyn`
|
2022-09-11 19:19:07 +00:00
LL | let _: Box<dyn ?Sized + (for<'a> Trait<'a>) + (Obj)>;
| +++
2021-07-10 08:00:54 +00:00
2020-03-07 11:54:31 +00:00
error[E0225]: only auto traits can be used as additional traits in a trait object
2021-04-16 09:06:51 +00:00
--> $DIR/trait-object-trait-parens.rs:13:47
2019-05-28 18:45:27 +00:00
|
2021-04-16 09:06:51 +00:00
LL | let _: Box<?Sized + (for<'a> Trait<'a>) + (Obj)>;
| ------------------- ^^^^^ additional non-auto trait
| |
| first non-auto trait
2020-08-14 19:08:49 +00:00
|
2021-10-02 00:21:01 +00:00
= help: consider creating a new trait with all of these as supertraits and using that trait here instead: `trait NewTrait: for<'a> Trait<'a> + Obj {}`
2020-08-14 19:08:49 +00: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>
2019-05-28 18:45:27 +00:00
2021-07-10 08:00:54 +00:00
warning: trait objects without an explicit `dyn` are deprecated
--> $DIR/trait-object-trait-parens.rs:18:16
|
LL | let _: Box<for<'a> Trait<'a> + (Obj) + (?Sized)>;
2021-11-01 09:01:42 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-07-10 08:00:54 +00:00
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
2021-11-01 09:01:42 +00:00
help: use `dyn`
|
2022-09-11 19:19:07 +00:00
LL | let _: Box<dyn for<'a> Trait<'a> + (Obj) + (?Sized)>;
| +++
2021-07-10 08:00:54 +00:00
2020-03-07 11:54:31 +00:00
error[E0225]: only auto traits can be used as additional traits in a trait object
2021-04-16 09:06:51 +00:00
--> $DIR/trait-object-trait-parens.rs:18:36
2019-01-06 15:33:05 +00:00
|
2021-04-16 09:06:51 +00:00
LL | let _: Box<for<'a> Trait<'a> + (Obj) + (?Sized)>;
| ----------------- ^^^^^ additional non-auto trait
| |
| first non-auto trait
2020-08-14 19:08:49 +00:00
|
2021-10-02 00:21:01 +00:00
= help: consider creating a new trait with all of these as supertraits and using that trait here instead: `trait NewTrait: for<'a> Trait<'a> + Obj {}`
2020-08-14 19:08:49 +00: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>
2019-01-06 15:33:05 +00:00
2020-03-11 15:30:09 +00:00
error: aborting due to 6 previous errors; 3 warnings emitted
2019-01-06 15:33:05 +00:00
2020-03-07 11:54:31 +00:00
For more information about this error, try `rustc --explain E0225`.