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>2009-09-08 18:13:47 +0400
committerMarek Safar <marek.safar@gmail.com>2009-09-08 18:13:47 +0400
commitc98a5a360a9a01f3f7120bf33b38f2493746f846 (patch)
treefe59b9561e43434e460c057d29a949e85d8a3b5c /mcs/tests/test-726.cs
parent161aa266f5d1e368c7fb50e563f616d99d5d623e (diff)
New test.
svn path=/trunk/mcs/; revision=141522
Diffstat (limited to 'mcs/tests/test-726.cs')
-rw-r--r--mcs/tests/test-726.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-726.cs b/mcs/tests/test-726.cs
new file mode 100644
index 00000000000..73cde6e7ce1
--- /dev/null
+++ b/mcs/tests/test-726.cs
@@ -0,0 +1,18 @@
+interface IFoo
+{
+ object Clone ();
+}
+
+class CS0102 : IFoo
+{
+ object IFoo.Clone()
+ {
+ return this;
+ }
+
+ public class Clone { }
+
+ public static void Main ()
+ {
+ }
+}