Browse Source

Fix code style

pull/2953/head
ElektroKill 2 years ago
parent
commit
c76f755ec6
No known key found for this signature in database
GPG Key ID: 7E3C5C084E40E3EC
  1. 12
      ICSharpCode.Decompiler.Tests/TestCases/Correctness/DecimalFields.cs

12
ICSharpCode.Decompiler.Tests/TestCases/Correctness/DecimalFields.cs

@ -43,19 +43,23 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness @@ -43,19 +43,23 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness
return 0;
}
public static decimal IntToDecimal() {
public static decimal IntToDecimal()
{
return (decimal)int.MaxValue;
}
public static decimal UIntToDecimal() {
public static decimal UIntToDecimal()
{
return (decimal)uint.MaxValue;
}
public static decimal LongToDecimal() {
public static decimal LongToDecimal()
{
return (decimal)long.MaxValue;
}
public static decimal ULongToDecimal() {
public static decimal ULongToDecimal()
{
return (decimal)ulong.MaxValue;
}
}

Loading…
Cancel
Save