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

gtest-066.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37a169a4ea2a29bfd39dbc6bb588de88309cc3df (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
using System;
using A = Test;

public class Foo<T>
{
	public class Bar <U>
	{
	}
}

namespace Test
{
	class FooEx<V, W> {}
}

class X
{
	public static void Main ()
	{
		Console.WriteLine (typeof (Foo<>));
		Console.WriteLine (typeof (Foo<>.Bar<>));
		Console.WriteLine (typeof (Test.FooEx<,>));		
		Console.WriteLine (typeof (A::FooEx<,>));
	}
}