cgen: fix error for 'in array of sumtype' (#14444)
parent
c5d93afdc1
commit
b37130e664
|
@ -382,7 +382,8 @@ fn (mut g Gen) infix_expr_in_op(node ast.InfixExpr) {
|
|||
if right.unaliased_sym.kind == .array {
|
||||
if left.sym.kind in [.sum_type, .interface_] {
|
||||
if node.right is ast.ArrayInit {
|
||||
if node.right.exprs.len > 0 {
|
||||
if node.right.exprs.len > 0
|
||||
&& g.table.sym(node.right.expr_types[0]).kind !in [.sum_type, .interface_] {
|
||||
mut infix_exprs := []ast.InfixExpr{}
|
||||
for i in 0 .. node.right.exprs.len {
|
||||
infix_exprs << ast.InfixExpr{
|
||||
|
|
|
@ -309,3 +309,10 @@ fn test_in_alias_array() {
|
|||
assert Str('') in [Str(''), Str('a')]
|
||||
assert Struct{} == Struct{}
|
||||
}
|
||||
|
||||
type TokenValue = rune | u64
|
||||
|
||||
fn test_in_array_of_sumtype() {
|
||||
val := TokenValue(`+`)
|
||||
assert val in [TokenValue(`+`), TokenValue(`-`)]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue