mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
18 lines
334 B
Rust
18 lines
334 B
Rust
#![warn(clippy::cmp_null)]
|
|
#![allow(unused_mut)]
|
|
|
|
use std::ptr;
|
|
|
|
fn main() {
|
|
let x = 0;
|
|
let p: *const usize = &x;
|
|
if p == ptr::null() {
|
|
println!("This is surprising!");
|
|
}
|
|
let mut y = 0;
|
|
let mut m: *mut usize = &mut y;
|
|
if m == ptr::null_mut() {
|
|
println!("This is surprising, too!");
|
|
}
|
|
}
|