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

test-917.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c82172d8cba68f5d4a51ebfc9ec5ee8b0f33507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class Foo
{
	public static class Nested
	{
		class bar
		{
			public static int value;
		}
		
		public static void Main ()
		{
			{
				bool bar = false;
			}
			
			var i = bar.value;
		} 
	}
}