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() };
|
|
}
|