summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/generic_const_exprs/let-bindings.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/generic_const_exprs/let-bindings.stderr')
-rw-r--r--src/test/ui/const-generics/generic_const_exprs/let-bindings.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/const-generics/generic_const_exprs/let-bindings.stderr b/src/test/ui/const-generics/generic_const_exprs/let-bindings.stderr
new file mode 100644
index 000000000..5ebb4c399
--- /dev/null
+++ b/src/test/ui/const-generics/generic_const_exprs/let-bindings.stderr
@@ -0,0 +1,20 @@
+error: overly complex generic constant
+ --> $DIR/let-bindings.rs:6:68
+ |
+LL | fn test<const N: usize>() -> [u8; { let x = N; N + 1 }] where [u8; { let x = N; N + 1 }]: Default {
+ | ^^^^^^^^^^^^^^^^^^^^ blocks are not supported in generic constant
+ |
+ = help: consider moving this anonymous constant into a `const` function
+ = note: this operation may be supported in the future
+
+error: overly complex generic constant
+ --> $DIR/let-bindings.rs:6:35
+ |
+LL | fn test<const N: usize>() -> [u8; { let x = N; N + 1 }] where [u8; { let x = N; N + 1 }]: Default {
+ | ^^^^^^^^^^^^^^^^^^^^ blocks are not supported in generic constant
+ |
+ = help: consider moving this anonymous constant into a `const` function
+ = note: this operation may be supported in the future
+
+error: aborting due to 2 previous errors
+