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>2004-08-12 19:30:40 +0400
committerMartin Baulig <martin@novell.com>2004-08-12 19:30:40 +0400
commitaf2ecc871bdd99ed15d023563abeea1743236fbe (patch)
treeb80dd5cf48e86e3c2234233a91295dc7402c0a6a /mcs/errors/gcs0111.cs
parent5af8cff02c472df464ed8b640148334b054cec57 (diff)
New test for #62647.
svn path=/trunk/mcs/; revision=32267
Diffstat (limited to 'mcs/errors/gcs0111.cs')
-rw-r--r--mcs/errors/gcs0111.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/errors/gcs0111.cs b/mcs/errors/gcs0111.cs
new file mode 100644
index 00000000000..0259daec25f
--- /dev/null
+++ b/mcs/errors/gcs0111.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+
+public class Dictionary<K,V>
+{
+ public void Add (V key)
+ {
+ throw new InvalidOperationException ();
+ }
+
+ public void Add (V value)
+ {
+ throw new InvalidOperationException ();
+ }
+}