[Microsoft.CSharp] Replaced with CoreFX implementation
[mono.git] / mcs / tests / test-675.cs
1 // Compiler options: -r:test-675-lib.dll
2
3 using System;
4
5 public class B : A
6 {
7         public override int GetHashCode ()
8         {
9                 return 1;
10         }
11         
12         public override bool Equals (object o)
13         {
14                 return true;
15         }
16         
17         public static bool operator == (B u1, B u2)
18         {
19                 return true;
20         }
21
22         public static bool operator != (B u1, B u2)
23         {
24                 return false;
25         }
26 }
27
28 public class Test
29 {
30         public static int Main ()
31         {
32                 return 0;
33         }
34 }