rust/src/test/ui/inference/inference-variable-behind-raw-pointer.rs
2018-12-25 21:08:33 -07:00

10 lines
216 B
Rust

// compile-pass
// tests that the following code compiles, but produces a future-compatibility warning
fn main() {
let data = std::ptr::null();
let _ = &data as *const *const ();
if data.is_null() {}
}