rust/src/test/ui/error-codes/E0121.stderr

16 lines
532 B
Plaintext
Raw Normal View History

2018-02-08 03:35:35 +00:00
error[E0121]: the type placeholder `_` is not allowed within types on item signatures
--> $DIR/E0121.rs:11:13
|
2018-02-23 00:42:32 +00:00
LL | fn foo() -> _ { 5 } //~ ERROR E0121
2018-02-08 03:35:35 +00:00
| ^ not allowed in type signatures
error[E0121]: the type placeholder `_` is not allowed within types on item signatures
--> $DIR/E0121.rs:13:13
|
2018-02-23 00:42:32 +00:00
LL | static BAR: _ = "test"; //~ ERROR E0121
2018-02-08 03:35:35 +00:00
| ^ not allowed in type signatures
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`.