Add new error
authorMiguel de Icaza <miguel@gnome.org>
Tue, 7 Jan 2003 20:40:17 +0000 (20:40 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Tue, 7 Jan 2003 20:40:17 +0000 (20:40 -0000)
svn path=/trunk/mcs/; revision=10258

mcs/errors/cs0514.cs [new file with mode: 0644]

diff --git a/mcs/errors/cs0514.cs b/mcs/errors/cs0514.cs
new file mode 100644 (file)
index 0000000..054054c
--- /dev/null
@@ -0,0 +1,9 @@
+// cs0514: Static constructor can not have arguments
+// Line: 4
+class X {
+       static X (int a)
+       {
+       }
+
+       static void Main () {}
+}