1error[E0308]: mismatched types
2 --> $DIR/array_len_suffix.rs:4:32
3 |
44 | fn array() -> [String; 12u16];
5 | ^^^^^ expected `usize`, found `u16`
6 |
7help: change the type of the numeric literal from `u16` to `usize`
8 |
94 | fn array() -> [String; 12usize];
10 | ^^^^^^^
11