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