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

cs1540.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ba524e4869b7dea259b51c67413b510d8e58e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class A
{
        protected int n;
}

class B : A
{
        public static void Main ()
	{
		A b = new A ();
		b.n = 1;
	}
}