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>2011-01-05 13:34:59 +0300
committerMarek Safar <marek.safar@gmail.com>2011-01-05 13:36:07 +0300
commitb64ce512d069637158bbee65460d2be5b578b900 (patch)
treef8bdf617c5b0f4852d91516154392f1bcd5aa13a /mcs/errors/cs0454.cs
parent3b042a2c6ce9f1f14846decd7d640e304047d6de (diff)
Unify naming convention for all 2.0 files
Diffstat (limited to 'mcs/errors/cs0454.cs')
-rw-r--r--mcs/errors/cs0454.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs0454.cs b/mcs/errors/cs0454.cs
new file mode 100644
index 00000000000..386c875929d
--- /dev/null
+++ b/mcs/errors/cs0454.cs
@@ -0,0 +1,14 @@
+// CS0454: Circular constraint dependency involving `T' and `U'
+// Line: 7
+using System;
+
+class Foo<T,U>
+ where T : U
+ where U : T
+{ }
+
+class X
+{
+ static void Main ()
+ { }
+}