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/CS0205-3-lib.cs')
-rw-r--r--mcs/errors/CS0205-3-lib.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/mcs/errors/CS0205-3-lib.cs b/mcs/errors/CS0205-3-lib.cs
deleted file mode 100644
index 284890aa301..00000000000
--- a/mcs/errors/CS0205-3-lib.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-// cs0205-2.cs: Cannot call an abstract base member `A.Foobar'
-// Line: 15
-
-public abstract class A
-{
- protected abstract int Foobar { get; }
-}
-
-public abstract class A1 : A { }