Merge pull request #2435 from Lperlind/master

Fix type comparison not accounting for parapoly params
This commit is contained in:
gingerBill
2023-04-06 12:56:25 +01:00
committed by GitHub
+1 -1
View File
@@ -2683,7 +2683,7 @@ gb_internal bool are_types_identical_internal(Type *x, Type *y, bool check_tuple
return false; return false;
} }
} }
return true; return are_types_identical(x->Struct.polymorphic_params, y->Struct.polymorphic_params);
} }
break; break;