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-03-17 00:09:42 +0300
committerMartin Baulig <martin@novell.com>2004-03-17 00:09:42 +0300
commit4b5442cbd95d3af620fdda8e8c2a524ac74632d4 (patch)
tree5e60398c3e5db22ac0321d1069cfc736907a016b /mcs/errors/gcs0695-4.cs
parentde0dcca33b5233aee4ee941be5a66c7ccec15c26 (diff)
New generics tests.
svn path=/trunk/mcs/; revision=24167
Diffstat (limited to 'mcs/errors/gcs0695-4.cs')
-rw-r--r--mcs/errors/gcs0695-4.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/errors/gcs0695-4.cs b/mcs/errors/gcs0695-4.cs
new file mode 100644
index 00000000000..51d112bb3f4
--- /dev/null
+++ b/mcs/errors/gcs0695-4.cs
@@ -0,0 +1,8 @@
+interface I<X>
+{ }
+
+interface K<X>
+{ }
+
+class C<X,Y> : I<K<Y>>, I<X>
+{ }