blob: e29860cbfbf5fd3e48031b993b0aefc0af4cbe42 [file] [log] [blame]
// Check that we allow a cast to `_` so long as the target type can be
// inferred elsewhere.
pub fn main() {
let i: *const i32 = 0 as _;
assert!(i.is_null());
}