2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0557-3.cs
blob40f1fca218de163ac8bb1369c5e9104409292eec
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();