Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0019-13.cs
1 // CS0019: Operator `??' cannot be applied to operands of type `null' and `method group'
2 // Line: 8
3
4 class C
5 {
6         delegate void D ();
7
8         static void Main ()
9         {
10                 D d = null ?? Main;
11         }
12 }