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