Files
linux-packaging-mono/mcs/errors/cs1750-3.cs

10 lines
181 B
C#
Raw Normal View History

// CS1750: Optional parameter expression of type `decimal' cannot be converted to parameter type `int?'
// Line: 6
public class TS
{
public static void Test (int? i = 1m)
{
}
}