summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/generic_const_exprs/issue-62504.min.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/generic_const_exprs/issue-62504.min.stderr')
-rw-r--r--src/test/ui/const-generics/generic_const_exprs/issue-62504.min.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/const-generics/generic_const_exprs/issue-62504.min.stderr b/src/test/ui/const-generics/generic_const_exprs/issue-62504.min.stderr
new file mode 100644
index 000000000..9bea4105d
--- /dev/null
+++ b/src/test/ui/const-generics/generic_const_exprs/issue-62504.min.stderr
@@ -0,0 +1,27 @@
+error: constant expression depends on a generic parameter
+ --> $DIR/issue-62504.rs:18:25
+ |
+LL | ArrayHolder([0; Self::SIZE])
+ | ^^^^^^^^^^
+ |
+ = note: this may fail depending on what value the parameter takes
+
+error[E0308]: mismatched types
+ --> $DIR/issue-62504.rs:18:21
+ |
+LL | ArrayHolder([0; Self::SIZE])
+ | ----------- ^^^^^^^^^^^^^^^ expected `X`, found `Self::SIZE`
+ | |
+ | arguments to this struct are incorrect
+ |
+ = note: expected array `[u32; X]`
+ found array `[u32; _]`
+note: tuple struct defined here
+ --> $DIR/issue-62504.rs:14:8
+ |
+LL | struct ArrayHolder<const X: usize>([u32; X]);
+ | ^^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0308`.