summary refs log tree commit diff
path: root/src/test/ui/const-generics/issue-61422.rs
blob: 68e5a52e0ac5cba18c9873560dbf5a86768df1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass

#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash

use std::mem;

fn foo<const SIZE: usize>() {
    let arr: [u8; SIZE] = unsafe {
        #[allow(deprecated)]
        let mut array: [u8; SIZE] = mem::uninitialized();
        array
    };
}

fn main() {}