chromium/third_party/rust/chromium_crates_io/vendor/cxx-1.0.126/tests/ui/array_len_expr.stderr

error: array length must be an integer literal
 --> tests/ui/array_len_expr.rs:4:28
  |
4 |         arraystr: [String; "13"],
  |                            ^^^^

error: unsupported expression, array length must be an integer literal
 --> tests/ui/array_len_expr.rs:5:28
  |
5 |         arraysub: [String; 15 - 1],
  |                            ^^^^^^

error: array with zero size is not supported
 --> tests/ui/array_len_expr.rs:6:20
  |
6 |         arrayzero: [String; 0],
  |                    ^^^^^^^^^^^