2018-02-07 21:35:35 -06:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures
|
|
|
|
--> $DIR/E0121.rs:11:13
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo() -> _ { 5 } //~ ERROR E0121
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures
|
|
|
|
--> $DIR/E0121.rs:13:13
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | static BAR: _ = "test"; //~ ERROR E0121
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0121`.
|