mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
338 B
19 lines
338 B
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
|
{ |
|
public class OptionalArgumentsDisabled |
|
{ |
|
public void Test() |
|
{ |
|
MixedArguments("123", 0, 0); |
|
OnlyOptionalArguments(0, 0); |
|
} |
|
|
|
public void MixedArguments(string msg, int a = 0, int b = 0) |
|
{ |
|
} |
|
|
|
public void OnlyOptionalArguments(int a = 0, int b = 0) |
|
{ |
|
} |
|
} |
|
}
|
|
|