Skip to content

Commit

Permalink
Discard unused expression value (IDE0058)
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Jan 29, 2023
1 parent dec51ec commit 4eacf16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MoreLinq.Test/NullArgumentTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static IEnumerable<ITestCaseData> GetNotNullTestCases() =>

try
{
method.Invoke(null, args);
_ = method.Invoke(null, args);
}
catch (TargetInvocationException tie)
{
Expand Down

0 comments on commit 4eacf16

Please sign in to comment.