(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0535-2.cs
blobdf2ee78ed8466013ca2d2e157b52adced370a8b3
2 using System;
4 public interface IStack {
5 void Insert (int index, object value);
6 object this [int index] { set; }
9 public class Stack : IStack {
10 object IStack.this [int index] {
11 set {}
15 public class D {
16 static void Main () {}