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>2004-06-09 16:50:33 +0400
committerMarek Safar <marek.safar@gmail.com>2004-06-09 16:50:33 +0400
commit785445af36e968df21cdf8ed63508cb4c48819e0 (patch)
tree87085471275bf9c540bdd43cc308a2676d0f88f3 /mcs/errors/cs0019-8.cs
parenta9e8ff0947a287a7f0dd58aa940a7b76e472164d (diff)
new error test
svn path=/trunk/mcs/; revision=29112
Diffstat (limited to 'mcs/errors/cs0019-8.cs')
-rw-r--r--mcs/errors/cs0019-8.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs0019-8.cs b/mcs/errors/cs0019-8.cs
new file mode 100644
index 00000000000..85f659f1bff
--- /dev/null
+++ b/mcs/errors/cs0019-8.cs
@@ -0,0 +1,14 @@
+// cs0019.cs : Operator '-' cannot be applied to operands of type `string' and `ulong'
+// Line : 12
+
+using System;
+
+public class C
+{
+ public static void Main ()
+ {
+ ulong aa = 10;
+ ulong bb = 3;
+ Console.WriteLine("bug here --> "+aa-bb);
+ }
+}