2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-275.cs
blobacadfffe0d91bcc10c88e96486965a7d5ae187d4
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
5 public class Test
7 public class C
9 public C()
11 Type t = typeof(Dictionary<,>);
15 public class D<T, U>
17 public D()
19 Type t = typeof(Dictionary<,>);
23 public class E<T>
25 public E()
27 Type t = typeof(Dictionary<,>);
31 public static void Main()
33 new C();
34 new D<string, string>();
35 new E<string>();