summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0548-3.cs
blob: 487db35c72db58f08b38e5f1c17daa36d1da83cc (plain)
1
2
3
4
5
6
7
// CS0548: `PropertyInterface.this[long]': property or indexer must have at least one accessor
// Line: 5

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