Skip to content

Commit

Permalink
Nullable fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseyTs authored Mar 22, 2024
1 parent 77f93d3 commit 6eda453
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ public Symbol SpecialMember(SpecialMember sm)

public MethodSymbol SpecialMethod(SpecialMember sm)
{
var result = (MethodSymbol)SpecialMember(sm, isOptional: false);
var result = (MethodSymbol?)SpecialMember(sm, isOptional: false);
Debug.Assert(result is not null);
return result;
}
Expand Down

0 comments on commit 6eda453

Please sign in to comment.