Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0535-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df2ee78ed8466013ca2d2e157b52adced370a8b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 
using System; 
 
public interface IStack {
	void Insert (int index, object value);
	object this [int index] { set; }
}

public class Stack : IStack {
	object IStack.this [int index] {
		set {}
	}
}

public class D {
	static void Main () {}
}