2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-8.cs
blobf17c8736aab552e68feb3ccde1cc689b902607f9
1 // cs0019-8.cs: Operator `-' cannot be applied to operands of type `string' and `ulong'
2 // Line : 12
4 using System;
6 public class C
8 public static void Main ()
10 ulong aa = 10;
11 ulong bb = 3;
12 Console.WriteLine("bug here --> "+aa-bb);