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

test-375.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 019f48b008a7f632f312ed244aaf3f711442b414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class a
{
	protected class b
	{
	}
}

class c : a
{
	b a_var;
	
	protected class d
	{
		b d_var;
	}

	public static void Main () {}
}