2021-05-19 14:23:32 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-62504.rs:18:21
|
|
|
|
|
|
|
|
|
LL | ArrayHolder([0; Self::SIZE])
|
|
|
|
| ^^^^^^^^^^^^^^^ expected `X`, found `Self::SIZE`
|
|
|
|
|
|
2022-08-11 21:00:37 -05:00
|
|
|
= note: expected constant `X`
|
|
|
|
found constant `Self::SIZE`
|
2021-05-19 14:23:32 -05:00
|
|
|
|
2021-08-27 11:04:57 -05:00
|
|
|
error: unconstrained generic constant
|
2020-11-17 04:44:21 -06:00
|
|
|
--> $DIR/issue-62504.rs:18:25
|
2020-03-26 18:46:24 -05:00
|
|
|
|
|
|
|
|
LL | ArrayHolder([0; Self::SIZE])
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
2021-08-27 11:04:57 -05:00
|
|
|
= help: try adding a `where` bound using this expression: `where [(); Self::SIZE]:`
|
2020-03-26 18:46:24 -05:00
|
|
|
|
2021-05-19 14:23:32 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2020-03-12 19:03:58 -05:00
|
|
|
|
2021-05-19 14:23:32 -05:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|