mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
cf2b0c8dd6
* new cmp_null lint (fixes #1184) * adressed comments (still fails) * fixed tests, dogfood, ran update_lints
19 lines
429 B
Rust
19 lines
429 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(cmp_null)]
|
|
#![allow(unused_mut)]
|
|
|
|
use std::ptr;
|
|
|
|
fn main() {
|
|
let x = 0;
|
|
let p : *const usize = &x;
|
|
if p == ptr::null() { //~ERROR: Comparing with null
|
|
println!("This is surprising!");
|
|
}
|
|
let mut y = 0;
|
|
let mut m : *mut usize = &mut y;
|
|
if m == ptr::null_mut() { //~ERROR: Comparing with null
|
|
println!("This is surprising, too!");
|
|
}
|
|
}
|