about summary refs log tree commit diff
path: root/tests/ui/editions/edition-raw-pointer-method-2018.rs
blob: ad47553d5b7a2b2b604f313932f6f2b5da1fdaf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ edition:2018

// tests that editions work with the tyvar warning-turned-error

#[deny(warnings)]
fn main() {
    let x = 0;
    let y = &x as *const _;
    //~^ error: type annotations needed
    let _ = y.is_null();
}