1error: array length must be an integer literal 2 --> tests/ui/array_len_expr.rs:4:28 3 | 44 | arraystr: [String; "13"], 5 | ^^^^ 6 7error: unsupported expression, array length must be an integer literal 8 --> tests/ui/array_len_expr.rs:5:28 9 | 105 | arraysub: [String; 15 - 1], 11 | ^^^^^^ 12 13error: array with zero size is not supported 14 --> tests/ui/array_len_expr.rs:6:20 15 | 166 | arrayzero: [String; 0], 17 | ^^^^^^^^^^^ 18