arrays/class-field-length-cname.vala \
arrays/expression-bracket.test \
arrays/field-global-length-cname.vala \
+ arrays/fixed-length-concat-invalid.test \
arrays/fixed-length-non-const.test \
arrays/struct-field-length-cname.vala \
arrays/incompatible-integer-elements.test \
var array_type = (ArrayType) left.value_type;
+ if (array_type.inline_allocated) {
+ error = true;
+ Report.error (source_reference, "Array concatenation not supported for fixed length arrays");
+ }
if (right.value_type == null || !right.value_type.compatible (array_type.element_type)) {
error = true;
Report.error (source_reference, "Incompatible operand");