Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0822.cs
1 // CS0822: An implicitly typed local variable cannot be a constant
2 // Line: 9
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 const var v = 0;
10         }
11 }
12