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

cs0708.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23d85f51f89e5ae982f48ed534d72ae1fb4737e2 (plain)
1
2
3
4
5
6
7
// CS0708: `StaticClass.i': cannot declare instance members in a static class
// Line: 6

static class StaticClass
{
	public int i;
}