add array multiplication operator

This commit is contained in:
Andrew Kelley
2016-04-28 18:03:44 -07:00
parent 46b0b84b90
commit d908afe105
10 changed files with 117 additions and 3 deletions

View File

@@ -232,7 +232,7 @@ int eval_const_expr_bin_op(ConstExprValue *op1_val, TypeTableEntry *op1_type,
case BinOpTypeUnwrapMaybe:
zig_panic("TODO");
case BinOpTypeStrCat:
zig_panic("TODO");
case BinOpTypeArrayMult:
case BinOpTypeInvalid:
zig_unreachable();
}