New test.
[mono.git] / mcs / errors / cs1585.cs
1 // cs1585.cs: Member modifier `static' must precede the member type and name
2 // Line:  7
3 using System; 
4  
5 class t 
6
7         public void static Main (string[] args) 
8         { 
9                 Console.WriteLine("Hello"); 
10         } 
11