]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/consts/const-size_of_val-align_of_val-extern-type.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / consts / const-size_of_val-align_of_val-extern-type.rs
index 6653717778ba5afc594dd38149cfc98ede17b29b..4df3a793b4c3814de5b8b60413f9642d937606a2 100644 (file)
@@ -8,9 +8,7 @@ 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
+const _SIZE: usize = unsafe { size_of_val(&4 as *const i32 as *const Opaque) }; //~ ERROR constant
+const _ALIGN: usize = unsafe { min_align_of_val(&4 as *const i32 as *const Opaque) }; //~ ERROR constant
 
 fn main() {}