checker: c2v fixed array fix (#14436)

master
playX 2022-05-17 23:35:05 +00:00 committed by GitHub
parent b5fb848508
commit a608516b82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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() {
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_ {