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

cs0548-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f96cbf2c97c78e36ebfda237f73e4101e425e2eb (plain)
1
2
3
4
5
6
7
// cs0548-3.cs: `PropertyInterface.this[long]': property or indexer must have at least one accessor
// Line: 5

interface PropertyInterface {     
	int this [long l] {}
}