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

15 lines
395 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;
| ^^^^^^
2019-03-30 22:06:09 +00:00
error[E0224]: at least one non-builtin 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