cleol
[mcs.git] / tests / test-675.cs
blobbda5a523b8ef2eaeed4a3e117ff6bba1208cf790
1 // Compiler options: -r:test-675-lib.dll
3 using System;
5 public class B : A
7 public override int GetHashCode ()
9 return 1;
12 public override bool Equals (object o)
14 return true;
17 public static bool operator == (B u1, B u2)
19 return true;
22 public static bool operator != (B u1, B u2)
24 return false;
28 public class Test
30 public static int Main ()
32 return 0;