Bump API snapshot submodule
[mono.git] / mcs / errors / cs0828-7.cs
1 // CS0827: An anonymous type property `Prop' cannot be initialized with `(int, method group)'
2 // Line: 9
3
4 class XX
5 {
6         public static void Main ()
7         {
8                 var m = new {
9                         Prop = (1, Main)
10                 };
11         }
12 }