[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0535-2.cs
blob7b4d4e21d285c38f97ba029ad343827774c0f037
1 // CS0535: `Stack' does not implement interface member `IStack.Insert(int, object)'
2 // Line: 11
4 using System;
6 public interface IStack {
7 void Insert (int index, object value);
8 object this [int index] { set; }
11 public class Stack : IStack {
12 object IStack.this [int index] {
13 set {}
17 public class D {
18 static void Main () {}