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

cs0115-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc3e218732bce50824df6bdfb4678dd1d28e50b8 (plain)
1
2
3
4
5
6
7
8
// cs0115.cs: 'X.this[int]': no suitable method found to override
// Line: 5

class X {
	public override long this [int i] {
            set { }
	}
}