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

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

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