mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
12 lines
266 B
Rust
12 lines
266 B
Rust
//@ known-bug: #127742
|
|
struct Vtable(dyn Cap); // missing lifetime
|
|
|
|
trait Cap<'a> {}
|
|
|
|
union Transmute {
|
|
t: u64, // ICEs with u64, u128, or usize. Correctly errors with u32.
|
|
u: &'static Vtable,
|
|
}
|
|
|
|
const G: &'static Vtable = unsafe { Transmute { t: 1 }.u };
|