Add new error
[mono.git] / mcs / errors / cs0514.cs
1 // cs0514: Static constructor can not have arguments
2 // Line: 4
3 class X {
4         static X (int a)
5         {
6         }
7
8         static void Main () {}
9 }