You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The behavior of INamedTypeSymbol.TupleUnderlyingType should return null rather than this when the type is a tuple without names, to avoid breaking existing callers.
If the caller recurses on TupleUnderlyingType, returning this could lead to a StackOverflowException that will crash the process.
The behavior of
INamedTypeSymbol.TupleUnderlyingType
should returnnull
rather thanthis
when the type is a tuple without names, to avoid breaking existing callers.If the caller recurses on
TupleUnderlyingType
, returningthis
could lead to aStackOverflowException
that will crash the process.The behavior changed in #39370.
The text was updated successfully, but these errors were encountered: