mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
230 B
Rust
16 lines
230 B
Rust
// skip-filecheck
|
|
// Regression test for issue #116212.
|
|
|
|
#![feature(never_type)]
|
|
|
|
use std::mem::MaybeUninit;
|
|
|
|
struct Foo {
|
|
x: u8,
|
|
y: !,
|
|
}
|
|
|
|
fn main() {
|
|
let foo = unsafe { MaybeUninit::<Foo>::uninit().assume_init() };
|
|
}
|