[w32file] Remove dead code
[mono.git] / mcs / errors / cs0514.cs
1 // CS0514: `X.X()': static constructor cannot have an explicit `this' or `base' constructor call
2 // Line: 4
3 class X {
4         static X () : base ()
5         {
6         }
7
8         static void Main () {}
9 }