summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/two_matching_preds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/two_matching_preds.rs')
-rw-r--r--tests/ui/const-generics/two_matching_preds.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/const-generics/two_matching_preds.rs b/tests/ui/const-generics/two_matching_preds.rs
new file mode 100644
index 000000000..de608f73e
--- /dev/null
+++ b/tests/ui/const-generics/two_matching_preds.rs
@@ -0,0 +1,19 @@
+// check-pass
+#![feature(generic_const_exprs)]
+#![allow(incomplete_features)]
+
+fn foo<const N: usize>()
+where
+ [(); N + 1]:,
+ [(); N + 1]:,
+{
+ bar::<N>();
+}
+
+fn bar<const N: usize>()
+where
+ [(); N + 1]:,
+{
+}
+
+fn main() {}