Switch to compiler-tester
[mono.git] / mcs / errors / cs0111-7.cs
1 // cs0111-7.cs: Type `T' already defines a member called `T' with the same parameter types
2 // Line : 6
3
4 class T {
5         static T () {}
6         static T () {}
7
8         public static void Main ()
9         {
10         }
11 }