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

cs0573-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89458be2ef6e9294d59fcbe4d664751fbc12ad3c (plain)
1
2
3
4
5
6
// cs0573.cs: `A.a': Structs cannot have instance field initializers
// Line: 5

partial struct A {
	int a = 1;
}