2022-01-05 04:43:21 -06:00
|
|
|
error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0121.rs:1:13
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | fn foo() -> _ { 5 }
|
2019-07-15 11:30:48 -05:00
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| not allowed in type signatures
|
2019-12-27 06:15:48 -06:00
|
|
|
| help: replace with the correct return type: `i32`
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2022-01-05 04:43:21 -06:00
|
|
|
error[E0121]: the placeholder `_` is not allowed within types on item signatures for static variables
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0121.rs:3:13
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | static BAR: _ = "test";
|
2019-07-19 13:59:54 -05:00
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| not allowed in type signatures
|
2021-06-05 08:10:08 -05:00
|
|
|
| help: replace with the correct type: `&str`
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
|
|
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`.
|