Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0746.cs
1 // CS0746: Invalid anonymous type member declarator. Anonymous type members must be a member assignment, simple name or member access expression
2 // Line: 16
3
4
5 using System;
6
7 public class Test
8 {
9         static void Main ()
10         {
11                 var c = new { new Test () };
12         }
13 }