Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-209.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace ClassLibrary3
6 {
7         public class Dictionary1<TKey, TValue> : Dictionary<TKey, TValue>
8         { }
9
10         public class Test
11         {
12                 public static void Main ()
13                 {
14                         Dictionary1<Guid, String> _D = new Dictionary1<Guid, string>();
15                         _D.Add(Guid.NewGuid(), "foo");
16                 }
17         }
18 }
19