2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-396-lib.cs
bloba4d2ca9ce589ad3c80fccb5d1a3a3d08424e2bb4
1 // Compiler options: -t:library
3 public class A
5 public static bool operator==(A a1, A a2)
7 return true;
10 public static bool operator!=(A a1, A a2)
12 return false;
15 public override bool Equals (object o)
17 return true;
20 public override int GetHashCode ()
22 return base.GetHashCode ();
25 public int KK () { return 1; }
28 public class B : A {