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:
Diffstat (limited to 'mcs/errors/cs0108.cs')
-rwxr-xr-xmcs/errors/cs0108.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/mcs/errors/cs0108.cs b/mcs/errors/cs0108.cs
deleted file mode 100755
index a516acc7d38..00000000000
--- a/mcs/errors/cs0108.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-// cs0108.cs: The new keyword is required on MEMBER because it hides MEMBER2
-// Line:
-
-class Base {
- public void F () {}
-}
-
-class Derived : Base {
- void F () {}
-}