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

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

5 lines
56 B
Rust
Raw Normal View History

2017-06-12 20:22:26 +00:00
fn main() {
let y = 0u32;
*y; //~ ERROR E0614
}