rust/tests/ui/maybe-bounds.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

error[E0658]: `?Trait` is not permitted in supertraits
2018-12-25 09:56:47 -06:00
--> $DIR/maybe-bounds.rs:1:11
|
2019-03-09 06:03:44 -06:00
LL | trait Tr: ?Sized {}
2018-04-27 03:32:54 -05:00
| ^^^^^^
|
= note: traits are `?Sized` by default
= 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
error[E0658]: `?Trait` is not permitted in trait object types
--> $DIR/maybe-bounds.rs:4:20
|
LL | type A1 = dyn Tr + (?Sized);
| ^^^^^^^^
|
= 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
error[E0658]: `?Trait` is not permitted in trait object types
--> $DIR/maybe-bounds.rs:6:28
|
LL | type A2 = dyn for<'a> Tr + (?Sized);
| ^^^^^^^^
|
= 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
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0658`.