New test.
[mono.git] / mcs / tests / gtest-275.cs
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
4
5 public class Test
6 {
7         public class C
8         {
9                 public C()
10                 {
11                         Type t = typeof(Dictionary<,>);
12                 }
13         }
14
15         public class D<T, U>
16         {
17                 public D()
18                 {
19                         Type t = typeof(Dictionary<,>);
20                 }
21         }
22
23         public class E<T>
24         {
25                 public E()
26                 {
27                         Type t = typeof(Dictionary<,>);
28                 }
29         }
30
31         public static void Main()
32         {               
33                 new C();
34                 new D<string, string>();
35                 new E<string>();
36         }
37 }
38