summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-size_of_val-align_of_val-extern-type.rs
blob: 6653717778ba5afc594dd38149cfc98ede17b29b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(extern_types)]
#![feature(core_intrinsics)]
#![feature(const_size_of_val, const_align_of_val)]

use std::intrinsics::{min_align_of_val, size_of_val};

extern "C" {
    type Opaque;
}

const _SIZE: usize = unsafe { size_of_val(&4 as *const i32 as *const Opaque) }; //~ ERROR
//~| WARN this was previously accepted by the compiler but is being phased out
const _ALIGN: usize = unsafe { min_align_of_val(&4 as *const i32 as *const Opaque) }; //~ ERROR
//~| WARN this was previously accepted by the compiler but is being phased out

fn main() {}