360c32babd8ef69d2321a8a2934828a61f8eadec
[mono.git] / mcs / errors / gcs0828-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 }