rust-clippy/tests/ui/zero_ptr.rs
2017-10-03 12:07:24 +02:00

11 lines
181 B
Rust

#[allow(unused_variables)]
fn main() {
let x = 0 as *const usize;
let y = 0 as *mut f64;
let z = 0;
let z = z as *const usize; // this is currently not caught
}