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

test-838.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff6d5fa63035dc4ecec93df3dbcf3a8e3cf77430 (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
namespace N1
{
	using System;
	using RVA = N2.G<N2.Test>;
}

namespace N2
{
	using System;

	[Obsolete ("old version", true)]
	class Test
	{
	}

	class G<T>
	{
	}

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