rust/tests/ui/maybe-bounds.stderr

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

23 lines
558 B
Plaintext
Raw Normal View History

error: `?Trait` is not permitted in supertraits
2018-12-25 15:56:47 +00:00
--> $DIR/maybe-bounds.rs:1:11
|
2019-03-09 12:03:44 +00:00
LL | trait Tr: ?Sized {}
2018-04-27 08:32:54 +00:00
| ^^^^^^
|
= note: traits are `?Sized` by default
error: `?Trait` is not permitted in trait object types
--> $DIR/maybe-bounds.rs:4:20
|
LL | type A1 = dyn Tr + (?Sized);
| ^^^^^^^^
error: `?Trait` is not permitted in trait object types
--> $DIR/maybe-bounds.rs:6:28
|
LL | type A2 = dyn for<'a> Tr + (?Sized);
| ^^^^^^^^
error: aborting due to 3 previous errors