]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-size_of_val-align_of_val-extern-type.stderr
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[rust.git] / src / test / ui / consts / const-size_of_val-align_of_val-extern-type.stderr
1 error: any use of this value will cause an error
2   --> $DIR/const-size_of_val-align_of_val-extern-type.rs:11:31
3    |
4 LL | const _SIZE: usize = unsafe { size_of_val(&4 as *const i32 as *const Opaque) };
5    | ------------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^---
6    |                               |
7    |                               `extern type` does not have known layout
8    |
9    = note: `#[deny(const_err)]` on by default
10
11 error: any use of this value will cause an error
12   --> $DIR/const-size_of_val-align_of_val-extern-type.rs:12:32
13    |
14 LL | const _ALIGN: usize = unsafe { min_align_of_val(&4 as *const i32 as *const Opaque) };
15    | -------------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^---
16    |                                |
17    |                                `extern type` does not have known layout
18
19 error: aborting due to 2 previous errors
20