This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[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