summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1750-3.cs
blob: 9673a74670b58321e6d296d53f3c0c57f72b34e7 (plain)
1
2
3
4
5
6
7
8
9
// 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)
	{
	}
}