mirror of https://github.com/icsharpcode/ILSpy.git
7 changed files with 56 additions and 1 deletions
@ -0,0 +1,17 @@ |
|||||||
|
using System; |
||||||
|
|
||||||
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
||||||
|
{ |
||||||
|
public class ExpandParamsArgumentsDisabled |
||||||
|
{ |
||||||
|
public void Test() |
||||||
|
{ |
||||||
|
MethodWithParams(Array.Empty<int>()); |
||||||
|
MethodWithParams(new int[1] { 5 }); |
||||||
|
} |
||||||
|
|
||||||
|
public void MethodWithParams(params int[] b) |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue