rust/src/test/ui/inference/inference-variable-behind-raw-pointer.rs
2019-07-03 06:30:28 +09:00

9 lines
251 B
Rust

// build-pass (FIXME(62277): could be check-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() {}
}