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

cs0666.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af5499d83ea44de5046145b28895108ec37437b1 (plain)
1
2
3
4
5
6
7
8
9
// cs0666: member declaration in struct class
// Line: 4
struct X {
	protected int A;

	static void Main ()
	{
	}
}