Skip to content

Commit

Permalink
Fix #3025: Annotate nested types
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrzesniewski committed Jul 1, 2023
1 parent bf0d74d commit 8d73fd4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@ AstType ConvertTypeHelper(IType genericType, IReadOnlyList<IType> typeArguments)
{
// Handle nested types
result.Target = ConvertTypeHelper(genericType.DeclaringType, typeArguments);
AddTypeAnnotation(result.Target, genericType.DeclaringType);
}
else
{
Expand Down

0 comments on commit 8d73fd4

Please sign in to comment.