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

test-735.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b83b896183cc18b2e7abcfdc0c818c802f4aaa77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

public class B
{
	public class C
	{
		class X
		{
			public D field;
		}
		
		public static void Main ()
		{
		}
	}
	
	class D
	{
	}
}