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>2001-10-05 00:34:02 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-10-05 00:34:02 +0400
commit4c65105bccdf4eda0f18376479c27f8371863b65 (patch)
treeb9cc475e686ec53ff7b98f4b183bf891fd7fc078 /mcs/errors/cs0621.cs
parent212c24b4f0ae208ebc8451226888719bf940fe8e (diff)
Add more errors, and fix some error tests
svn path=/trunk/mcs/; revision=1077
Diffstat (limited to 'mcs/errors/cs0621.cs')
-rwxr-xr-xmcs/errors/cs0621.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/errors/cs0621.cs b/mcs/errors/cs0621.cs
index 014fd39ba92..87bc932088c 100755
--- a/mcs/errors/cs0621.cs
+++ b/mcs/errors/cs0621.cs
@@ -1,5 +1,5 @@
// cs0621.cs: X.method virtual or abstract methods can not be private
// Line:
class X {
- virtual void method ();
+ virtual void method () {}
}