summaryrefslogtreecommitdiff
path: root/mcs/tests/test-916.cs
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;
			}
		} 
	}
}