summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/transmute-const-param-static-reference.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/transmute-const-param-static-reference.rs')
-rw-r--r--src/test/ui/const-generics/transmute-const-param-static-reference.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/const-generics/transmute-const-param-static-reference.rs b/src/test/ui/const-generics/transmute-const-param-static-reference.rs
deleted file mode 100644
index 6b443c8bd..000000000
--- a/src/test/ui/const-generics/transmute-const-param-static-reference.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// revisions: full min
-//[full] check-pass
-
-#![cfg_attr(full, feature(adt_const_params))]
-#![cfg_attr(full, allow(incomplete_features))]
-
-struct Const<const P: &'static ()>;
-//[min]~^ ERROR `&'static ()` is forbidden as the type of a const generic parameter
-
-fn main() {
- const A: &'static () = unsafe {
- std::mem::transmute(10 as *const ())
- };
-
- let _ = Const::<{A}>;
-}