ignores
[mcs.git] / errors / cs0557-2.cs
blob5c3e428c693a53086b0292f106a518d09b378c45
1 // cs0557-2.cs: Duplicate user-defined conversion in type `C'
2 // Line: 9
3 class C {
4 public static bool operator != (C a, C b)
6 return true;
9 public static bool operator != (C a, C b)
11 return true;
14 public static bool operator == (C a, C b)
15 { return false; }
22 class X {
23 static void Main ()