rust/src/test/ui/const-generics/issues/issue-62504.stderr

13 lines
371 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
--> $DIR/issue-62504.rs:18:21
2020-03-13 09:03:58 +09:00
|
LL | ArrayHolder([0; Self::SIZE])
| ^^^^^^^^^^^^^^^ 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
For more information about this error, try `rustc --explain E0308`.