2018-02-07 19:35:35 -08:00
|
|
|
error[E0121]: the type placeholder `_` is not allowed within types on item signatures
|
|
|
|
--> $DIR/E0121.rs:11:13
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn foo() -> _ { 5 } //~ ERROR E0121
|
2018-02-07 19:35:35 -08: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-23 03:42:32 +03:00
|
|
|
LL | static BAR: _ = "test"; //~ ERROR E0121
|
2018-02-07 19:35:35 -08:00
|
|
|
| ^ not allowed in type signatures
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0121"
|