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
arg ??= 0;
if(arg is null)
{
// This should be unreachable
}
??= is being translated to a check of .HasValue. Currently, the engine cannot detect the above case, because it does not learn NotNull on the arg.HasValue branch.
See original discussion: #7312 (comment)
The text was updated successfully, but these errors were encountered:
??=
is being translated to a check of.HasValue
. Currently, the engine cannot detect the above case, because it does not learnNotNull
on thearg.HasValue
branch.See original discussion:
#7312 (comment)
The text was updated successfully, but these errors were encountered: