summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1908-4.cs
blob: dc3565426f3922259a540d0a34ea7f35820dc314 (plain)
1
2
3
4
5
6
7
8
// CS1908: The type of the default value should match the type of the parameter
// Line: 

class Test {
	internal void f ([System.Runtime.InteropServices.DefaultParameterValue ((short) 1)] int x)
	{
	}
}