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