[arm64] Add the full neon regs to the context
[mono.git] / mcs / errors / cs0828-6.cs
1 // CS0828: An anonymous type property `Value' cannot be initialized with `method group'
2 // Line: 12
3
4 public class Test
5 {
6         static void Error ()
7         {
8         }
9         
10         static void Main ()
11         {
12                 var v = new { Value = Error };
13         }
14 }