about summary refs log tree commit diff
path: root/tests/codegen/issues/issue-96274.rs
blob: d278796dd02afa264dd5ae2b009bdc17402d1cac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ compile-flags: -O

#![crate_type = "lib"]
#![feature(inline_const)]

use std::mem::MaybeUninit;

pub fn maybe_uninit() -> [MaybeUninit<u8>; 3000] {
    // CHECK-NOT: memset
    [MaybeUninit::uninit(); 3000]
}

pub fn maybe_uninit_const<T>() -> [MaybeUninit<T>; 8192] {
    // CHECK-NOT: memset
    [const { MaybeUninit::uninit() }; 8192]
}