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-03 17:01:18 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-10-03 17:01:18 +0400
commit914532ab8ac1cc13525cb0383874ae9521150639 (patch)
treeb90414b43d8a85c95563e2a44df8c0ee965be8f9 /mcs/errors/cs0019.cs
parentb717c0c9eb18319a24b00c2e626e02353ab7a4fd (diff)
Added files for errors CS0019 and CS0023
svn path=/trunk/mcs/; revision=1064
Diffstat (limited to 'mcs/errors/cs0019.cs')
-rw-r--r--mcs/errors/cs0019.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs0019.cs b/mcs/errors/cs0019.cs
new file mode 100644
index 00000000000..c3dbd4f9b93
--- /dev/null
+++ b/mcs/errors/cs0019.cs
@@ -0,0 +1,14 @@
+// cs0019.cs : Operator + cannot be applied to operands of type `Foo' and `int'
+// Line : 11
+
+public class Foo {
+
+ public static void Main ()
+ {
+
+ Foo k = new Foo ();
+
+ int i = k + 6;
+
+ }
+}