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

gtest-370.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfcb47743e32ffec52246c9fe6768f21935f6395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace N2
{
	public class X<T>
	{
		private class A<T>
		{
			private class B<T>
			{
				public class C<T>
				{
				}
			
				internal C<T> foo;
			}
		}
	}
	
	class C
	{
		public static void Main ()
		{
		}
	}
}