Updated with review feedback.
[mono.git] / mcs / errors / cs0836.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 }