updating to the latest module.
[mono.git] / mcs / errors / cs1585.cs
1 // cs1585: Modifier `static' should appear before type
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