summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/missing-larger-array-impl.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/missing-larger-array-impl.stderr')
-rw-r--r--tests/ui/consts/missing-larger-array-impl.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/consts/missing-larger-array-impl.stderr b/tests/ui/consts/missing-larger-array-impl.stderr
new file mode 100644
index 000000000..b8f6cb5ef
--- /dev/null
+++ b/tests/ui/consts/missing-larger-array-impl.stderr
@@ -0,0 +1,20 @@
+error[E0277]: the trait bound `[X; 35]: Default` is not satisfied
+ --> $DIR/missing-larger-array-impl.rs:7:5
+ |
+LL | <[X; 35] as Default>::default();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Default` is not implemented for `[X; 35]`
+ |
+ = help: the following other types implement trait `Default`:
+ [T; 0]
+ [T; 1]
+ [T; 2]
+ [T; 3]
+ [T; 4]
+ [T; 5]
+ [T; 6]
+ [T; 7]
+ and 27 others
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.