2004-08-04 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / cs0119.cs
1 // cs0119.cs: 'Test.E()' is a 'method', which is not valid in the given context
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 }