new tests
[mono.git] / mcs / errors / cs0111-7.cs
1 // cs111-7.cs : Class `T' already contains a definition with the same return value and parameter types for method `Foo'
2 // Line : 6
3
4 class T {
5         static T () {}
6         static T () {}
7
8         public static void Main ()
9         {
10         }
11 }