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-30 23:42:57 +0400
committerMartin Baulig <martin@novell.com>2004-03-30 23:42:57 +0400
commit3d30150b0a7cd1c64d7d0cfffd5291b8fc618b11 (patch)
treea7c2eb8fc6d98ac77480bf0696e743750ca04960 /mcs/errors/gcs0405.cs
parente9cb787f55a946168e57d9f55d46cb8c5b4afade (diff)
More tests ...
svn path=/trunk/mcs/; revision=24799
Diffstat (limited to 'mcs/errors/gcs0405.cs')
-rw-r--r--mcs/errors/gcs0405.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/errors/gcs0405.cs b/mcs/errors/gcs0405.cs
new file mode 100644
index 00000000000..18352097d4a
--- /dev/null
+++ b/mcs/errors/gcs0405.cs
@@ -0,0 +1,6 @@
+interface I { }
+
+class Foo<T>
+ where T : I, I
+{
+}