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

gtest-068.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d60f7d3928525a3688b8d0ed556515e857260a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Martin
{
	public class Foo<T>
	{ }
}

namespace Baulig
{
	using M = Martin;

	class X
	{
		public static void Main ()
		{
			M.Foo<int> foo;
		}
	}
}