Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2003-01-08 00:02:30 +0300
committerMiguel de Icaza <miguel@gnome.org>2003-01-08 00:02:30 +0300
commitddee62a7a331648ef3d7af336b5ccea410e7d678 (patch)
tree47d178076fc626fd3963957a96c8c990782e63a9 /mcs/errors/cs0514.cs
parentba145fa7036aaaf9f6065f00187e58e8cce7c6ef (diff)
Fix test
svn path=/trunk/mcs/; revision=10259
Diffstat (limited to 'mcs/errors/cs0514.cs')
-rw-r--r--mcs/errors/cs0514.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/errors/cs0514.cs b/mcs/errors/cs0514.cs
index 054054c5855..86747c11ae8 100644
--- a/mcs/errors/cs0514.cs
+++ b/mcs/errors/cs0514.cs
@@ -1,7 +1,7 @@
// cs0514: Static constructor can not have arguments
// Line: 4
class X {
- static X (int a)
+ static X () : base ()
{
}