New tests, and fixed buffer mcs -> gmcs switch.
[mono.git] / mcs / errors / gcs0836.cs
1 // CS0836: Anonymous types cannot be used in this expression
2 // Line: 6
3
4 public class C
5 {
6         const object o = new { };
7 }