Added new error
[mono.git] / mcs / errors / cs0535-2.cs
1  
2 using System; 
3  
4 public interface IStack {
5         void Insert (int index, object value);
6         object this [int index] { set; }
7 }
8
9 public class Stack : IStack {
10         object IStack.this [int index] {
11                 set {}
12         }
13 }
14
15 public class D {
16         static void Main () {}
17 }