2019-01-06 18:33:05 +03:00
|
|
|
error: `?Trait` is not permitted in trait object types
|
2020-03-07 12:54:31 +01:00
|
|
|
--> $DIR/trait-object-trait-parens.rs:8:24
|
2019-01-06 18:33:05 +03:00
|
|
|
|
|
2020-03-07 12:54:31 +01:00
|
|
|
LL | let _: Box<(Obj) + (?Sized) + (for<'a> Trait<'a>)>;
|
|
|
|
|
| ^^^^^^^^
|
2019-01-06 18:33:05 +03:00
|
|
|
|
|
|
|
|
error: `?Trait` is not permitted in trait object types
|
2020-03-07 12:54:31 +01:00
|
|
|
--> $DIR/trait-object-trait-parens.rs:12:17
|
2019-01-06 18:33:05 +03:00
|
|
|
|
|
2020-03-07 12:54:31 +01:00
|
|
|
LL | let _: Box<(?Sized) + (for<'a> Trait<'a>) + (Obj)>;
|
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
|
error: `?Trait` is not permitted in trait object types
|
|
|
|
|
--> $DIR/trait-object-trait-parens.rs:16:46
|
|
|
|
|
|
|
|
|
|
|
LL | let _: Box<(for<'a> Trait<'a>) + (Obj) + (?Sized)>;
|
|
|
|
|
| ^^^^^^^^
|
2019-01-06 18:33:05 +03:00
|
|
|
|
2019-05-28 14:45:27 -04:00
|
|
|
warning: trait objects without an explicit `dyn` are deprecated
|
2020-03-07 12:54:31 +01:00
|
|
|
--> $DIR/trait-object-trait-parens.rs:8:16
|
2019-05-28 14:45:27 -04:00
|
|
|
|
|
2020-03-07 12:54:31 +01:00
|
|
|
LL | let _: Box<(Obj) + (?Sized) + (for<'a> Trait<'a>)>;
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn (Obj) + (?Sized) + (for<'a> Trait<'a>)`
|
2019-05-28 14:45:27 -04:00
|
|
|
|
|
2019-07-16 22:17:38 +02:00
|
|
|
= note: `#[warn(bare_trait_objects)]` on by default
|
2019-05-28 14:45:27 -04:00
|
|
|
|
|
|
|
|
warning: trait objects without an explicit `dyn` are deprecated
|
2020-03-07 12:54:31 +01:00
|
|
|
--> $DIR/trait-object-trait-parens.rs:12:16
|
2019-05-28 14:45:27 -04:00
|
|
|
|
|
2020-03-07 12:54:31 +01:00
|
|
|
LL | let _: Box<(?Sized) + (for<'a> Trait<'a>) + (Obj)>;
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn (?Sized) + (for<'a> Trait<'a>) + (Obj)`
|
2019-05-28 14:45:27 -04:00
|
|
|
|
|
|
|
|
warning: trait objects without an explicit `dyn` are deprecated
|
2020-03-07 12:54:31 +01:00
|
|
|
--> $DIR/trait-object-trait-parens.rs:16:16
|
|
|
|
|
|
|
|
|
|
|
LL | let _: Box<(for<'a> Trait<'a>) + (Obj) + (?Sized)>;
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn (for<'a> Trait<'a>) + (Obj) + (?Sized)`
|
|
|
|
|
|
|
|
|
|
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>)>;
|
|
|
|
|
| ----- ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
| | |
|
|
|
|
|
| | additional non-auto trait
|
|
|
|
|
| | trait alias used in trait object type (additional use)
|
|
|
|
|
| first non-auto trait
|
|
|
|
|
| trait alias used in trait object type (first use)
|
|
|
|
|
|
|
|
|
|
error[E0225]: only auto traits can be used as additional traits in a trait object
|
|
|
|
|
--> $DIR/trait-object-trait-parens.rs:12:49
|
2019-05-28 14:45:27 -04:00
|
|
|
|
|
2020-03-07 12:54:31 +01:00
|
|
|
LL | let _: Box<(?Sized) + (for<'a> Trait<'a>) + (Obj)>;
|
|
|
|
|
| ------------------- ^^^^^
|
|
|
|
|
| | |
|
|
|
|
|
| | additional non-auto trait
|
|
|
|
|
| | trait alias used in trait object type (additional use)
|
|
|
|
|
| first non-auto trait
|
|
|
|
|
| trait alias used in trait object type (first use)
|
2019-05-28 14:45:27 -04:00
|
|
|
|
2020-03-07 12:54:31 +01:00
|
|
|
error[E0225]: only auto traits can be used as additional traits in a trait object
|
|
|
|
|
--> $DIR/trait-object-trait-parens.rs:16:38
|
2019-01-06 18:33:05 +03:00
|
|
|
|
|
2020-03-07 12:54:31 +01:00
|
|
|
LL | let _: Box<(for<'a> Trait<'a>) + (Obj) + (?Sized)>;
|
|
|
|
|
| ----------------- ^^^^^
|
|
|
|
|
| | |
|
|
|
|
|
| | additional non-auto trait
|
|
|
|
|
| | trait alias used in trait object type (additional use)
|
|
|
|
|
| first non-auto trait
|
|
|
|
|
| trait alias used in trait object type (first use)
|
2019-01-06 18:33:05 +03:00
|
|
|
|
2020-03-11 16:30:09 +01:00
|
|
|
error: aborting due to 6 previous errors; 3 warnings emitted
|
2019-01-06 18:33:05 +03:00
|
|
|
|
2020-03-07 12:54:31 +01:00
|
|
|
For more information about this error, try `rustc --explain E0225`.
|