summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/const-argument-non-static-lifetime.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/const-argument-non-static-lifetime.rs')
-rw-r--r--src/test/ui/const-generics/const-argument-non-static-lifetime.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/const-generics/const-argument-non-static-lifetime.rs b/src/test/ui/const-generics/const-argument-non-static-lifetime.rs
deleted file mode 100644
index 36a569784..000000000
--- a/src/test/ui/const-generics/const-argument-non-static-lifetime.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// [full] check-pass
-// revisions: full min
-
-// regression test for #78180
-// compile-flags: -Zsave-analysis
-
-#![cfg_attr(full, feature(generic_const_exprs))]
-#![cfg_attr(full, allow(incomplete_features))]
-#![allow(dead_code)]
-
-fn test<const N: usize>() {}
-
-fn wow<'a>() -> &'a () {
- test::<{
- let _: &'a (); //[min]~ ERROR a non-static lifetime
- 3
- }>();
- &()
-}
-
-fn main() {}