2024-02-23 07:39:57 -06:00
|
|
|
error[E0658]: `?Trait` is not permitted in supertraits
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/maybe-bounds.rs:1:11
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | trait Tr: ?Sized {}
|
2018-04-27 03:32:54 -05:00
|
|
|
| ^^^^^^
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
|
= note: traits are `?Sized` by default
|
2024-02-23 07:39:57 -06:00
|
|
|
= help: add `#![feature(more_maybe_bounds)]` to the crate attributes to enable
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2017-12-10 13:47:55 -06:00
|
|
|
|
2024-02-23 07:39:57 -06:00
|
|
|
error[E0658]: `?Trait` is not permitted in trait object types
|
2019-05-19 16:26:42 -05:00
|
|
|
--> $DIR/maybe-bounds.rs:4:20
|
|
|
|
|
|
|
|
|
LL | type A1 = dyn Tr + (?Sized);
|
|
|
|
| ^^^^^^^^
|
2024-02-23 07:39:57 -06:00
|
|
|
|
|
|
|
|
= help: add `#![feature(more_maybe_bounds)]` to the crate attributes to enable
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2019-05-19 16:26:42 -05:00
|
|
|
|
2024-02-23 07:39:57 -06:00
|
|
|
error[E0658]: `?Trait` is not permitted in trait object types
|
2019-05-19 16:26:42 -05:00
|
|
|
--> $DIR/maybe-bounds.rs:6:28
|
|
|
|
|
|
|
|
|
LL | type A2 = dyn for<'a> Tr + (?Sized);
|
|
|
|
| ^^^^^^^^
|
2024-02-23 07:39:57 -06:00
|
|
|
|
|
|
|
|
= help: add `#![feature(more_maybe_bounds)]` to the crate attributes to enable
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2019-05-19 16:26:42 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2017-12-10 13:47:55 -06:00
|
|
|
|
2024-02-23 07:39:57 -06:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|