mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen: fix error for 'in array of sumtype' (#14444)
This commit is contained in:
@@ -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(`-`)]
|
||||
}
|
||||
|
Reference in New Issue
Block a user