2023-03-01 10:40:39 +01:00
|
|
|
error[E0121]: the placeholder `_` is not allowed within types on item signatures for type aliases
|
|
|
|
--> $DIR/issue-106226.rs:2:11
|
2023-01-02 11:47:56 +01:00
|
|
|
|
|
|
|
|
LL | type F = [_; ()];
|
2023-03-01 10:40:39 +01:00
|
|
|
| ^ not allowed in type signatures
|
2023-01-02 11:47:56 +01:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2023-03-01 10:40:39 +01:00
|
|
|
For more information about this error, try `rustc --explain E0121`.
|