2022-05-04 15:47:09 -05:00
|
|
|
error[E0224]: at least one trait is required for an object type
|
2021-12-10 20:20:41 -06:00
|
|
|
--> $DIR/issue-65673.rs:9:16
|
2019-11-13 18:06:28 -06:00
|
|
|
|
|
2022-05-09 12:03:37 -05:00
|
|
|
LL | trait Alias<T> = where T: Trait;
|
2022-02-13 09:27:59 -06:00
|
|
|
| -------------- this alias does not contain a trait
|
2022-05-09 12:03:37 -05:00
|
|
|
...
|
2019-11-13 18:06:28 -06:00
|
|
|
LL | type Ctx = dyn Alias<T>;
|
2022-05-04 15:47:09 -05:00
|
|
|
| ^^^^^^^^^^^^
|
2019-11-13 18:06:28 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2022-05-04 15:47:09 -05:00
|
|
|
For more information about this error, try `rustc --explain E0224`.
|