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

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

5 lines
64 B
Rust
Raw Normal View History

2017-06-11 17:48:46 +00:00
fn main() {
let x = 0;
let _ = x.foo; //~ ERROR E0610
}