rust/tests/ui/cast/cast-to-infer-ty.rs
2023-01-11 09:32:08 +00:00

9 lines
183 B
Rust

// run-pass
// 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());
}