[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0029-13.cs
blob9d705b290e63fc2c0c8610380748a76765066098
1 // CS0029: Cannot implicitly convert type `int' to `A'
2 // Line: 14
4 class A
6 public static implicit operator int (A x)
8 return 1;
11 public static void Main ()
13 var a = new A ();
14 a++;