summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/fn_with_two_const_inputs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/fn_with_two_const_inputs.rs')
-rw-r--r--tests/ui/const-generics/fn_with_two_const_inputs.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/ui/const-generics/fn_with_two_const_inputs.rs b/tests/ui/const-generics/fn_with_two_const_inputs.rs
new file mode 100644
index 000000000..0d6246a9f
--- /dev/null
+++ b/tests/ui/const-generics/fn_with_two_const_inputs.rs
@@ -0,0 +1,23 @@
+#![feature(generic_const_exprs)]
+#![allow(incomplete_features)]
+
+const fn both(_: usize, b: usize) -> usize {
+ b
+}
+
+fn foo<const N: usize, const M: usize>() -> [(); N + 2]
+where
+ [(); both(N + 1, M + 1)]:,
+{
+ bar()
+ //~^ ERROR: unconstrained generic constant
+}
+
+fn bar<const N: usize>() -> [(); N]
+where
+ [(); N + 1]:,
+{
+ [(); N]
+}
+
+fn main() {}