[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / errors / cs0535-8.cs
blob853794ee31d3947f463905d0de06266e52995b30
1 // CS0535: `CC' does not implement interface member `IA.this[int].set'
2 // Line: 33
4 using System;
6 public interface IA
8 object this[int arg] {
9 get;
10 set;
14 public abstract class CA : IA
16 public abstract object this[int arg] {
17 get;
18 set;
22 public partial class CB : CA
24 public override object this[int arg] {
25 get {
26 throw new NotImplementedException ();
28 set {
33 public class CC : CB, IA
35 public new object this[int arg] {
36 get {
37 throw new NotImplementedException ();