rust/tests/ui/error-codes/E0121.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
726 B
Plaintext
Raw Normal View History

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 }
| ^
| |
| 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
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";
| ^
| |
| not allowed in type signatures
| 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`.