Add test for 116212.

This commit is contained in:
Camille GILLOT 2023-09-28 17:05:52 +00:00
parent dd91aba2fd
commit 255ca18454

View File

@ -0,0 +1,14 @@
// 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() };
}