Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0535-7.cs
1 // CS0535: `CC' does not implement interface member `IA.Coordinate.set'
2 // Line: 33
3
4 using System;
5
6 public interface IA
7 {
8         object Coordinate {
9                 get;
10                 set;
11         }
12 }
13
14 public abstract class CA : IA
15 {
16         public abstract object Coordinate {
17                 get;
18                 set;
19         }
20 }
21
22 public  partial class CB : CA
23 {
24         public override object Coordinate {
25                 get {
26                         throw new NotImplementedException ();
27                 }
28                 set {
29                 }
30         }
31 }
32
33 public class CC : CB, IA
34 {
35         public new object Coordinate {
36                 get {
37                         throw new NotImplementedException ();
38                 }
39         }
40 }