rust/tests/ui/consts/missing-larger-array-impl.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
597 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `[X; 35]: Default` is not satisfied
2023-08-25 18:28:34 +00:00
--> $DIR/missing-larger-array-impl.rs:7:6
|
LL | <[X; 35] as Default>::default();
2023-08-25 18:28:34 +00:00
| ^^^^^^^ the trait `Default` is not implemented for `[X; 35]`
|
= help: the following other types implement trait `Default`:
&[T]
&mut [T]
[T; 0]
[T; 10]
[T; 11]
[T; 12]
[T; 13]
[T; 14]
and 27 others
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.