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-2.cs
parentde0dcca33b5233aee4ee941be5a66c7ccec15c26 (diff)
New generics tests.
svn path=/trunk/mcs/; revision=24167
Diffstat (limited to 'mcs/errors/gcs0695-2.cs')
-rw-r--r--mcs/errors/gcs0695-2.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mcs/errors/gcs0695-2.cs b/mcs/errors/gcs0695-2.cs
new file mode 100644
index 00000000000..e574f599184
--- /dev/null
+++ b/mcs/errors/gcs0695-2.cs
@@ -0,0 +1,5 @@
+interface I<X>
+{ }
+
+class A<X,Y,Z> : I<X>, I<A<Y,Y,Z>>
+{ }