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:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2001-10-02 05:41:26 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-10-02 05:41:26 +0400
commit6e4cb8d32b2c8980995e6e7aece70230b6c539da (patch)
treebaa66ff4b35ed9fb4a0e9222ad634853499ab9d9 /mcs/errors/cs0215.cs
parentf17abd78165812bd516060797126082caef6f1a3 (diff)
Added more files for errors that we catch.
svn path=/trunk/mcs/; revision=1049
Diffstat (limited to 'mcs/errors/cs0215.cs')
-rw-r--r--mcs/errors/cs0215.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/errors/cs0215.cs b/mcs/errors/cs0215.cs
new file mode 100644
index 00000000000..3c875505e94
--- /dev/null
+++ b/mcs/errors/cs0215.cs
@@ -0,0 +1,13 @@
+// cs0215.cs : The return type of operator True or False must be bool
+// Line : 11
+
+class Blah {
+
+ public static void Main ()
+ {
+
+ }
+
+ public static int operator true (Blah i) {}
+
+}