mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-01 00:36:54 +00:00
14 lines
225 B
Rust
14 lines
225 B
Rust
//@ known-bug: #130521
|
|
|
|
#![feature(dyn_compatible_for_dispatch)]
|
|
struct Vtable(dyn Cap<'static>);
|
|
|
|
trait Cap<'a> {}
|
|
|
|
union Transmute {
|
|
t: u128,
|
|
u: &'static Vtable,
|
|
}
|
|
|
|
const G: &Copy = unsafe { Transmute { t: 1 }.u };
|