summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1908-3.cs
blob: 90bf3a96b503927eedcc93b0ffd352ac2e871c9c (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<T> where T : class {
	internal void f ([System.Runtime.InteropServices.DefaultParameterValue (null)] T x)
	{
	}
}