summaryrefslogtreecommitdiffstats
path: root/tests/ui/inference/inference-variable-behind-raw-pointer.rs
blob: 6662e46b1c7e26a3d2f153969448b6bc1a188f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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
}