summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/generic_const_exprs/from-sig.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/generic_const_exprs/from-sig.rs')
-rw-r--r--src/test/ui/const-generics/generic_const_exprs/from-sig.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/const-generics/generic_const_exprs/from-sig.rs b/src/test/ui/const-generics/generic_const_exprs/from-sig.rs
deleted file mode 100644
index 28de4f864..000000000
--- a/src/test/ui/const-generics/generic_const_exprs/from-sig.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// run-pass
-#![feature(generic_const_exprs)]
-#![allow(incomplete_features)]
-
-struct Foo<const B: bool>;
-
-fn test<const N: usize>() -> Foo<{ N > 10 }> {
- Foo
-}
-
-fn main() {
- let _: Foo<true> = test::<12>();
- let _: Foo<false> = test::<9>();
-}