blob: 9fdc7fb8603dfc3a1ca3a00420edca938ca536d9 [file] [log] [blame]
//@ run-rustfix
#[allow(unused_imports)]
use std::ptr;
fn expecting_null_mut(_: *mut u8) {}
fn main() {
expecting_null_mut(ptr::null());
//~^ ERROR mismatched types
}