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:
authorMiguel de Icaza <miguel@gnome.org>2001-08-27 06:42:30 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-08-27 06:42:30 +0400
commit144b21b88bf653ca6fcaa1700d784bfcfe6262b0 (patch)
tree25877e1e820246f589148341b946207ca27ffc4b /mcs/errors/cs0216.cs
parent92d3c11183cf2fa4b1783adb562302d2d68f977b (diff)
Add a couple of new errors and a compiler roadmap.
svn path=/trunk/mcs/; revision=635
Diffstat (limited to 'mcs/errors/cs0216.cs')
-rw-r--r--mcs/errors/cs0216.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/errors/cs0216.cs b/mcs/errors/cs0216.cs
new file mode 100644
index 00000000000..9511e701328
--- /dev/null
+++ b/mcs/errors/cs0216.cs
@@ -0,0 +1,8 @@
+// cs0216.cs: If you define operator <, you also need to define >
+// Line:
+class X {
+ public static X operator < (X a, int b)
+ {
+ }
+}
+