mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
ac56007ea7
This reverts commit13314df21b
, reversing changes made to6e534c73c3
.
13 lines
265 B
Rust
13 lines
265 B
Rust
//@ run-pass
|
|
//@ revisions: full min
|
|
|
|
#![cfg_attr(full, feature(adt_const_params))]
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
|
|
|
use std::mem::MaybeUninit;
|
|
|
|
#[repr(transparent)]
|
|
pub struct MaybeUninitWrapper<const N: usize>(MaybeUninit<[u64; N]>);
|
|
|
|
fn main() {}
|