]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-size_of_val-align_of_val-extern-type.stderr
Merge branch 'debian/sid' into debian/experimental
[rustc.git] / src / test / ui / consts / const-size_of_val-align_of_val-extern-type.stderr
CommitLineData
3dfed10e
XL
1error: any use of this value will cause an error
2 --> $DIR/const-size_of_val-align_of_val-extern-type.rs:11:31
3 |
4LL | 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
5869c6ff
XL
10 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
11 = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
3dfed10e
XL
12
13error: any use of this value will cause an error
5869c6ff 14 --> $DIR/const-size_of_val-align_of_val-extern-type.rs:13:32
3dfed10e
XL
15 |
16LL | const _ALIGN: usize = unsafe { min_align_of_val(&4 as *const i32 as *const Opaque) };
17 | -------------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^---
18 | |
19 | `extern type` does not have known layout
5869c6ff
XL
20 |
21 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
22 = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
3dfed10e
XL
23
24error: aborting due to 2 previous errors
25