checker: c2v fixed array fix (#14436)
parent
a2985d652a
commit
84c1f642f5
|
@ -56,6 +56,9 @@ pub fn (mut c Checker) check_types(got ast.Type, expected ast.Type) bool {
|
||||||
&& (expected_sym.info as ast.ArrayFixed).elem_type.is_any_kind_of_pointer() {
|
&& (expected_sym.info as ast.ArrayFixed).elem_type.is_any_kind_of_pointer() {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
if c.check_types((got_sym.info as ast.ArrayFixed).elem_type, (expected_sym.info as ast.ArrayFixed).elem_type) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if got_sym.kind == .enum_ {
|
if got_sym.kind == .enum_ {
|
||||||
|
|
Loading…
Reference in New Issue