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>2005-04-22 19:08:46 +0400
committerMartin Baulig <martin@novell.com>2005-04-22 19:08:46 +0400
commite3b0184ec4386d0a17e2610213152e5d14f1eeeb (patch)
treea3c1b76f5fbdd6eeb646918dbe0e0a76c4540b9e /mcs/errors/gcs0309-4.cs
parente092e531603b0d05c7aaa1eddd55f3b09f719469 (diff)
Updated.
svn path=/trunk/mcs/; revision=43445
Diffstat (limited to 'mcs/errors/gcs0309-4.cs')
-rw-r--r--mcs/errors/gcs0309-4.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/errors/gcs0309-4.cs b/mcs/errors/gcs0309-4.cs
new file mode 100644
index 00000000000..d04aa145aef
--- /dev/null
+++ b/mcs/errors/gcs0309-4.cs
@@ -0,0 +1,18 @@
+using System;
+
+class A<T>
+ where T: IComparable
+{
+}
+
+class B<U,V>
+ where V: A<U>
+{
+}
+
+class Driver
+{
+ public static void Main ()
+ {
+ }
+}