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:
authorRaja R Harinath <harinath@hurrynot.org>2004-09-07 13:51:02 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-09-07 13:51:02 +0400
commit779ec570c26faaa5f94e6013d8720f5f6ae0c06c (patch)
tree6e1e571af44e2625d2f82f09231f985ab240d9a1 /mcs/errors/CS0571-3-lib.cs
parente4da82786db9da5f440430917171ba477275e0fb (diff)
* cs0571-3.cs, CS0571-3-lib.cs: New tests for #59980.
* Makefile: Update list of dlls. svn path=/trunk/mcs/; revision=33484
Diffstat (limited to 'mcs/errors/CS0571-3-lib.cs')
-rw-r--r--mcs/errors/CS0571-3-lib.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/CS0571-3-lib.cs b/mcs/errors/CS0571-3-lib.cs
new file mode 100644
index 00000000000..c45119b0d73
--- /dev/null
+++ b/mcs/errors/CS0571-3-lib.cs
@@ -0,0 +1,12 @@
+// Testcase for bug #59980
+
+namespace Test {
+ public abstract class C0 {
+ public abstract int foo { get; }
+ }
+ public abstract class C1 : C0 {
+ }
+ public class C2 : C1 {
+ public override int foo { get { return 0; } }
+ }
+}