blob: dccee02e9cd183b4dee8771d018bf14ee82a9071 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0411]: `Self` is not allowed in type aliases
--> $DIR/trait-alias-self-projection.rs:3:19
|
LL | type D = &'static dyn B;
| ^^^^^ `Self` is only available in impls, traits, and concrete type definitions
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0411`.
|