mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
280 B
Rust
15 lines
280 B
Rust
// https://github.com/rust-lang/rust/issues/55223
|
|
|
|
union Foo<'a> {
|
|
y: &'a (),
|
|
long_live_the_unit: &'static (),
|
|
}
|
|
|
|
const FOO: &() = {
|
|
//~^ ERROR encountered dangling pointer in final constant
|
|
let y = ();
|
|
unsafe { Foo { y: &y }.long_live_the_unit }
|
|
};
|
|
|
|
fn main() {}
|