rust/tests/ui/inference/inference-variable-behind-raw-pointer.rs
2025-11-27 11:19:00 -05:00

12 lines
330 B
Rust

//@ edition:2015
//@ 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() {}
//~^ WARNING type annotations needed
//~| WARNING this is accepted in the current edition
}