Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / test-866.cs
blob723795ee412697e13db243c91ef40ff11dac3668
1 class C : B
3 public static bool operator + (C a, short b)
5 return false;
8 public static bool operator + (C a, long b)
10 return false;
14 class B
16 public static bool operator + (B b, string s)
18 return false;
22 public class Test
24 public static void Main ()
26 var c = new C ();
27 var a1 = c + "a";
28 var a2 = c + "a";