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

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