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/cs0503.cs
parent212c24b4f0ae208ebc8451226888719bf940fe8e (diff)
Add more errors, and fix some error tests
svn path=/trunk/mcs/; revision=1077
Diffstat (limited to 'mcs/errors/cs0503.cs')
-rwxr-xr-xmcs/errors/cs0503.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/errors/cs0503.cs b/mcs/errors/cs0503.cs
index 5f05f6af8fb..e8e8e048568 100755
--- a/mcs/errors/cs0503.cs
+++ b/mcs/errors/cs0503.cs
@@ -1,5 +1,5 @@
// cs0503.cs: The abstract method `Class.X' cannot be marked virtual
// Line: 4
-class Class {
+abstract class Class {
virtual abstract public void X ();
}