2022-01-05 11:43:21 +01:00
|
|
|
error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/E0121.rs:1:13
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn foo() -> _ { 5 }
|
2019-07-15 19:30:48 +03:00
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| not allowed in type signatures
|
2019-12-27 04:15:48 -08:00
|
|
|
| help: replace with the correct return type: `i32`
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2022-01-05 11:43:21 +01:00
|
|
|
error[E0121]: the placeholder `_` is not allowed within types on item signatures for static variables
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/E0121.rs:3:13
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | static BAR: _ = "test";
|
2019-07-19 21:59:54 +03:00
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| not allowed in type signatures
|
2021-06-05 21:10:08 +08:00
|
|
|
| help: replace with the correct type: `&str`
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0121`.
|