[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0557-3.cs
blob68f17dd55903e4c790f6b655f4c85fc477bae5e8
1 // CS0557: Duplicate user-defined conversion in type `Foo'
2 // Line: 5
4 public enum Bar
6 ABar
10 public class Foo
12 public static explicit operator Foo(Bar the_bar)
14 return new Foo();
16 public static implicit operator Foo(Bar the_bar)
18 return new Foo();