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

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