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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2005-10-04 22:15:17 +0400
committerMartin Baulig <martin@novell.com>2005-10-04 22:15:17 +0400
commit6854e6ad236bedbae3531577b4a98b3187eb7469 (patch)
treeb8e22fa913bd38f6a1947f4696e7b59741ba1594 /mcs/tests/gtest-209.cs
parent52eb674cd4058952d037adaeef8362a2f331e932 (diff)
New test.
svn path=/trunk/mcs/; revision=51192
Diffstat (limited to 'mcs/tests/gtest-209.cs')
-rw-r--r--mcs/tests/gtest-209.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/mcs/tests/gtest-209.cs b/mcs/tests/gtest-209.cs
new file mode 100644
index 00000000000..d06292c53f1
--- /dev/null
+++ b/mcs/tests/gtest-209.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace ClassLibrary3
+{
+ public class Dictionary1<TKey, TValue> : Dictionary<TKey, TValue>
+ { }
+
+ public class Test
+ {
+ static void Main ()
+ {
+ Dictionary1<Guid, String> _D = new Dictionary1<Guid, string>();
+ _D.Add(Guid.NewGuid(), "foo");
+ }
+ }
+}
+