merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / errors / cs0119.cs
1 // cs0119.cs: Expression denotes a `method group', where a `variable', `value' or `type' was expected
2 // Line: 14
3
4 using System;
5
6 public class Test
7 {
8     public static void E () 
9     { 
10     }
11
12     public static void Main () 
13     {
14         Console.WriteLine(E.x);
15     }
16 }