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

gtest-275.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acadfffe0d91bcc10c88e96486965a7d5ae187d4 (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
33
34
35
36
37
38
using System;
using System.Collections;
using System.Collections.Generic;

public class Test
{
	public class C
	{
		public C()
		{
			Type t = typeof(Dictionary<,>);
		}
	}

	public class D<T, U>
	{
		public D()
		{
			Type t = typeof(Dictionary<,>);
		}
	}

	public class E<T>
	{
		public E()
		{
			Type t = typeof(Dictionary<,>);
		}
	}

	public static void Main()
	{		
		new C();
		new D<string, string>();
		new E<string>();
	}
}