cleol
[mcs.git] / tests / test-675-lib.cs
blob217b87b66a66b18790ceead074b2634459d92f1a
1 // Compiler options: -t:library
3 public class A
5 public override int GetHashCode ()
7 return 1;
10 public override bool Equals (object o)
12 return true;
15 public static bool operator == (A u1, A u2)
17 return true;
20 public static bool operator != (A u1, A u2)
22 return false;