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:
Diffstat (limited to 'mcs/errors/bug12.cs')
-rwxr-xr-xmcs/errors/bug12.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/mcs/errors/bug12.cs b/mcs/errors/bug12.cs
deleted file mode 100755
index 27c24e93eb7..00000000000
--- a/mcs/errors/bug12.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Collections;
-
- class PtrHashtable : Hashtable {
- class PtrComparer : IComparer {
- public int Compare (object x, object y)
- {
- if (x == y)
- return 0;
- else
- return 1;
- }
- }
-
- public PtrHashtable ()
- {
- comparer = new PtrComparer ();
- }
- }
-