Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs1908-3.cs
1 // gcs1908.cs: The type of the default value should match the type of the parameter
2 // Line: 
3
4 class Test<T> where T : class {
5         internal void f ([System.Runtime.InteropServices.DefaultParameterValue (null)] T x)
6         {
7         }
8 }