Assign element to Slice not Array when alloc a Type_Slice

This commit is contained in:
ryuukk
2023-07-27 22:13:55 +02:00
committed by GitHub
parent 5ac7fe453f
commit a99da47b0d

View File

@@ -988,7 +988,7 @@ gb_internal Type *alloc_type_enumerated_array(Type *elem, Type *index, ExactValu
gb_internal Type *alloc_type_slice(Type *elem) {
Type *t = alloc_type(Type_Slice);
t->Array.elem = elem;
t->Slice.elem = elem;
return t;
}