diff --git a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/Discards.cs b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/Discards.cs index 8b039f1f7..47c35dfca 100644 --- a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/Discards.cs +++ b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/Discards.cs @@ -43,12 +43,6 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty GetOut(out var _); } - public void DiscardedOutVsLambdaParameter() - { - GetOut(out var _); - MakeValue((@_ _) => 5); - } - public void ExplicitlyTypedDiscard() { GetOutOverloaded(out string _); diff --git a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/QualifierTests.cs b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/QualifierTests.cs index 3c11e6517..57d0dee5f 100644 --- a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/QualifierTests.cs +++ b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/QualifierTests.cs @@ -305,14 +305,6 @@ namespace ICSharpCode.Decompiler.Tests.Pretty { System.Array.Sort(Array); } - - private void LocalConflictsWithTypeName() - { - for (int j = 0; j < 10; j++) - { - i.Test(); - } - } #if CS70 private void LocalConflictsWithLocalFunction() {