Files
rust/src/test/ui/traits/wf-trait-object-only-maybe-bound.stderr

16 lines
451 B
Plaintext
Raw Normal View History

error: `?Trait` is not permitted in trait object types
--> $DIR/wf-trait-object-only-maybe-bound.rs:3:15
|
LL | type _0 = dyn ?Sized;
| ^^^^^^
error[E0224]: at least one trait is required for an object type
--> $DIR/wf-trait-object-only-maybe-bound.rs:3:11
2019-03-30 22:06:09 +00:00
|
LL | type _0 = dyn ?Sized;
| ^^^^^^^^^^
error: aborting due to 2 previous errors
2019-03-30 22:06:09 +00:00
2020-03-21 15:43:12 +00:00
For more information about this error, try `rustc --explain E0224`.