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

cs8147.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a006a4d972789176abe7e2dd2948db1bbbdab24a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS8147: `X.TestProp': property and indexer which return by reference cannot have set accessors
// Line: 6

public class X
{
	ref string TestProp { 
		set {

		}
		get {

		}
	}
}