2022-04-13 09:37:36 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/nested_erroneous_ctfe.rs:2:16
|
|
|
|
|
|
|
|
|
LL | [9; || [9; []]];
|
2023-01-02 20:00:33 -06:00
|
|
|
| ^^ expected `usize`, found `[_; 0]`
|
2022-04-13 09:37:36 -05:00
|
|
|
|
|
|
|
|
= note: expected type `usize`
|
|
|
|
found array `[_; 0]`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|