updating to the latest module.
[mono.git] / mcs / errors / cs0514.cs
1 // cs0514: Static constructor can not have arguments
2 // Line: 4
3 class X {
4         static X () : base ()
5         {
6         }
7
8         static void Main () {}
9 }