Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-675-lib.cs
1 // Compiler options: -t:library
2
3 public class A
4 {
5         public override int GetHashCode ()
6         {
7                 return 1;
8         }
9         
10         public override bool Equals (object o)
11         {
12                 return true;
13         }
14         
15         public static bool operator == (A u1, A u2)
16         {
17                 return true;
18         }
19
20         public static bool operator != (A u1, A u2)
21         {
22                 return false;
23         }
24 }