1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fixed an issue with primitive type aliases as generic params

This commit is contained in:
Brian Fiete 2020-02-17 10:26:41 -08:00
parent a4d9d5a52f
commit fe531be4ef
2 changed files with 7 additions and 9 deletions

View file

@ -7130,6 +7130,11 @@ BfType* BfModule::ResolveTypeRef(BfTypeReference* typeRef, BfPopulateType popula
}
}
if (typeRef->ToString() == "Issue.I?")
{
NOP;
}
BfResolvedTypeSet::LookupContext lookupCtx;
lookupCtx.mRootTypeRef = typeRef;
lookupCtx.mRootTypeDef = typeDef;