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:
authorMarek Safar <marek.safar@gmail.com>2007-11-07 17:32:45 +0300
committerMarek Safar <marek.safar@gmail.com>2007-11-07 17:32:45 +0300
commit59890c4609bace4385988736d8bcfbe22d0737b2 (patch)
treea126bb8528dab176fa5ab733df3099fd133f2e97 /mcs/tests/gtest-350.cs
parentdc2f0cf045ace4021793b82d856dbd644358ace6 (diff)
2007-11-07 Marek Safar <marek.safar@gmail.com>
A test for bug #325161 svn path=/trunk/mcs/; revision=89104
Diffstat (limited to 'mcs/tests/gtest-350.cs')
-rw-r--r--mcs/tests/gtest-350.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/tests/gtest-350.cs b/mcs/tests/gtest-350.cs
new file mode 100644
index 00000000000..21550290a09
--- /dev/null
+++ b/mcs/tests/gtest-350.cs
@@ -0,0 +1,13 @@
+using x = System;
+
+abstract class Foo<T> : x::IEquatable<T>
+{
+ public abstract bool Equals (T x);
+}
+
+public class C
+{
+ public static void Main ()
+ {
+ }
+} \ No newline at end of file