2020-03-14 15:30:35 +01:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-62504.rs:18:21
|
2020-03-13 09:03:58 +09:00
|
|
|
|
|
|
|
|
LL | ArrayHolder([0; Self::SIZE])
|
2020-03-14 15:30:35 +01:00
|
|
|
| ^^^^^^^^^^^^^^^ expected `X`, found `Self::SIZE`
|
|
|
|
|
|
|
|
|
= note: expected array `[u32; _]`
|
|
|
|
found array `[u32; _]`
|
2020-03-13 09:03:58 +09:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-03-14 15:30:35 +01:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|