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

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

6 lines
91 B
Rust
Raw Normal View History

2016-05-28 04:06:24 +08:00
fn foo() -> _ { 5 } //~ ERROR E0121
static BAR: _ = "test"; //~ ERROR E0121
fn main() {}