[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs1585.cs
1 // CS1585: 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