Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0825-2.cs
1 // CS0825: The contextual keyword `var' may only appear within a local variable declaration
2 // Line: 9
3
4
5 public class Test
6 {
7         event var v;
8 }
9