2020-03-30 12:34:16 -05:00
|
|
|
error[E0308]: mismatched types
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/match_arr_unknown_len.rs:3:9
|
2020-03-30 12:34:16 -05:00
|
|
|
|
|
|
|
|
LL | [1, 2] => true,
|
2022-07-18 18:25:14 -05:00
|
|
|
| ^^^^^^ expected `2`, found `N`
|
2020-03-30 12:34:16 -05:00
|
|
|
|
|
|
|
|
= note: expected array `[u32; 2]`
|
2020-05-09 10:10:40 -05:00
|
|
|
found array `[u32; N]`
|
2020-03-30 12:34:16 -05:00
|
|
|
|
2021-08-27 11:04:57 -05:00
|
|
|
error: aborting due to previous error
|
2020-03-30 12:34:16 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|