Switch to compiler-tester
[mono.git] / mcs / tests / test-396-lib.cs
1 // Compiler options: -t:library
2
3 public class A
4 {
5         public static bool operator==(A a1, A a2)
6         {
7                 return true;
8         }
9
10         public static bool operator!=(A a1, A a2)
11         {
12                 return false;
13         }
14
15         public override bool Equals (object o)
16         {
17                 return true;
18         }
19
20         public override int GetHashCode ()
21         {
22                 return base.GetHashCode ();
23         }
24
25         public int KK () { return 1; }
26 }
27
28 public class B : A {
29 }
30