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-06-14 03:29:34 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-06-14 03:29:34 +0400
commit8ed037b7944a7d2518da908fbf5bd5326e315512 (patch)
treea21ba9d7332eb48d0c9d17b544f9a234184f9be9 /mcs/errors/cs0114.cs
parentdc0764172a50f5d5dae6693707b9bfb9db2d2a3b (diff)
Add test case for cs0114
svn path=/trunk/mcs/; revision=6
Diffstat (limited to 'mcs/errors/cs0114.cs')
-rwxr-xr-xmcs/errors/cs0114.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/errors/cs0114.cs b/mcs/errors/cs0114.cs
new file mode 100755
index 00000000000..b3c1f028e24
--- /dev/null
+++ b/mcs/errors/cs0114.cs
@@ -0,0 +1,9 @@
+// cs0114.cs: Y.XX hides inherited member X.XX. Must use `override' or `new' keyword
+// Line: 8
+public abstract class X {
+ public abstract void XX ();
+}
+
+class Y : X {
+ void XX ();
+}