[System.Runtime.Remoting] Adds System.Core reference for tests
[mono.git] / mcs / errors / cs1750-3.cs
1 // CS1750: Optional parameter expression of type `decimal' cannot be converted to parameter type `int?'
2 // Line: 6
3
4 public class TS
5 {
6         public static void Test (int? i = 1m)
7         {
8         }
9 }