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: d53e801be8e602edabc754fe4916732bd6dd0945 (plain)
1
2
3
4
5
6
7
// cs0548.cs: 'PropertyClass.Value' : property or indexer must have at least one accessor
// Line: 5

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