rust/tests/ui/inference/inference-variable-behind-raw-pointer.rs

12 lines
313 B
Rust
Raw Normal View History

//@ 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
2021-06-16 12:27:44 +00:00
//~| WARNING this is accepted in the current edition
}