Remove trailing empty lines
[mono.git] / mcs / errors / cs0111-6.cs
1 // cs111-6.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         T () {}
6         T () {}
7
8         public static void Main ()
9         {
10         }
11 }