summaryrefslogtreecommitdiffstats
path: root/tests/codegen/issue-96274.rs
blob: 28bfcce0d7be26d9be2f1fc534e82b4a3be8c1d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// min-llvm-version: 15.0
// 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]
}