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

cs0179-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14d5e548cab5d7e8cb173e171270f795ce6d26a1 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0179: `Bar.Foo.set' cannot declare a body because it is marked extern
// Line: 5

class Bar {
	extern int Foo {
		set { }
		get { }
	}
}