Review feedback + drop VS2013 support.
[mono.git] / mcs / errors / cs0514.cs
index 054054c5855e613c0884e02eaef89657d29074fc..ee80d82e62086abe14fd944b3a566676d6c09e7a 100644 (file)
@@ -1,7 +1,7 @@
-// cs0514: Static constructor can not have arguments
+// CS0514: `X.X()': static constructor cannot have an explicit `this' or `base' constructor call
 // Line: 4
 class X {
-       static X (int a)
+       static X () : base ()
        {
        }