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

cs0631.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa66204029d52c34f002a7d9ca95f6a52dfae1e0 (plain)
1
2
3
4
5
6
// cs0622.cs: ref and out are not valid in this context
// Line: 5

class X {
	public int this [ref int arg] { set {} }
}