summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/transparent-maybeunit-array-wrapper.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/transparent-maybeunit-array-wrapper.rs')
-rw-r--r--src/test/ui/const-generics/transparent-maybeunit-array-wrapper.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/const-generics/transparent-maybeunit-array-wrapper.rs b/src/test/ui/const-generics/transparent-maybeunit-array-wrapper.rs
deleted file mode 100644
index 926e807fe..000000000
--- a/src/test/ui/const-generics/transparent-maybeunit-array-wrapper.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// 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() {}