[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0019-8.cs
blob39f4d9cfabfa9274062cc8140f311847e62144eb
1 // CS0019: 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);