fix run-test
[mcs.git] / errors / cs0557-3.cs
blob1e686a8ee37f5e0ab81fbe01243e4bf2854acb25
1 // cs0557.cs: 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();