[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / errors / cs0557-2.cs
blob5f17896e9f16b2be17d98eb8e3cbc5ade142b2ec
1 // CS0557: 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 ()