Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0307-4.cs
1 // CS0307: The variable `d' cannot be used with type arguments
2 // Line: 9
3
4 public class Tests
5 {
6         public static void Main ()
7         {
8                 var d = 0;
9                 d<int> ();
10         }
11 }