Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0023-16.cs
1 // CS0023: The `.' operator cannot be applied to operand of type `method group'
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 }