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

16 lines
442 B
Plaintext
Raw Normal View History

error[E0224]: at least one trait is required for an object type
--> $DIR/trait-alias-only-maybe-bound.rs:13:12
2019-03-30 22:06:09 +00:00
|
LL | type _T0 = dyn _1;
| ^^^^^^
error[E0224]: at least one trait is required for an object type
--> $DIR/trait-alias-only-maybe-bound.rs:19:12
2019-03-30 22:06:09 +00:00
|
LL | type _T1 = dyn _2;
2019-03-30 22:06:09 +00:00
| ^^^^^^
error: aborting due to 2 previous errors
2020-03-21 15:43:12 +00:00
For more information about this error, try `rustc --explain E0224`.