Browse Source

Fix build.

pull/2113/head
Siegfried Pammer 5 years ago
parent
commit
74b84787d1
  1. 21
      ICSharpCode.Decompiler.Tests/TestCases/Pretty/Discards.cs

21
ICSharpCode.Decompiler.Tests/TestCases/Pretty/Discards.cs

@ -28,15 +28,16 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
{ {
} }
public void ParameterHiddenByLocal(@_ _) // out _ is currently not supported: the test cases below are not useful
{ //public void ParameterHiddenByLocal(@_ _)
GetOut(out int _); //{
} // GetOut(out int value);
//}
public void DiscardedOutVsLambdaParameter()
{ //public void DiscardedOutVsLambdaParameter()
GetOut(out int _); //{
MakeValue((@_ _) => 5); // GetOut(out int value);
} // MakeValue((@_ _) => 5);
//}
} }
} }

Loading…
Cancel
Save