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

gtest-423.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef32033691855444b99bf4f55b45f446d4f627a6 (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
25
26
27
28
29
30
31
32
using System;

namespace MonoTest
{
	public class A<TA>
	{
		class B<TB>
		{
			static void foo ()
			{
			}

			class C
			{
				static void bar ()
				{
					foo ();
					B<C>.foo ();
					A<C>.B<C>.foo ();
				}
			}
		}
	}

	class Program
	{
		public static void Main ()
		{
		}
	}
}