summaryrefslogtreecommitdiffstats
path: root/src/test/ui/editions/edition-raw-pointer-method-2015.rs
blob: fcfe493c1a228b7bf877414dd97a5c4eefba8545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// edition:2015

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

#[deny(warnings)]
fn main() {
    let x = 0;
    let y = &x as *const _;
    let _ = y.is_null();
    //~^ error: type annotations needed [tyvar_behind_raw_pointer]
    //~^^ warning: this is accepted in the current edition
}