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-03-08 22:16:20 +0300
committerMarek Safar <marek.safar@gmail.com>2009-03-08 22:16:20 +0300
commiteca88b66e8bfee89d30e078a6ef8323ffee87015 (patch)
tree9ebeed38c949882b91241e4c8dbbf1d009cd3c55 /mcs/tests/test-714.cs
parent3c1339e749d5b12ccba7ddfade79f11cf996a6d4 (diff)
New tests.
svn path=/trunk/mcs/; revision=128855
Diffstat (limited to 'mcs/tests/test-714.cs')
-rw-r--r--mcs/tests/test-714.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/tests/test-714.cs b/mcs/tests/test-714.cs
new file mode 100644
index 00000000000..02604a0b792
--- /dev/null
+++ b/mcs/tests/test-714.cs
@@ -0,0 +1,21 @@
+using System;
+
+class Hello : IFoo
+{
+ void IBar.Test ()
+ {
+ }
+
+ static void Main ()
+ {
+ }
+}
+
+interface IBar
+{
+ void Test ();
+}
+
+interface IFoo : IBar
+{
+}