[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0659.cs
1 // CS0659: `E' overrides Object.Equals(object) but does not override Object.GetHashCode()
2 // Line: 13
3 // Compiler options: -warnaserror -warn:3
4
5 public class Base
6 {
7     public override int GetHashCode ()
8     {
9         return 2;
10     }
11 }
12
13 public class E: Base
14 {
15     public override bool Equals (object o)
16     {
17         return true;
18     }
19 }