2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0659-2.cs
blobed21e0e9f7538b727e4a21d1f0ad8e6df5d128c9
1 // cs0659-2.cs: `Test.Test' overrides Object.Equals(object) but does not override Object.GetHashCode()
2 // Line: 7
3 // Compiler options: -warnaserror -warn:3
5 namespace Test{
6 public partial class Test{
7 public override bool Equals(object obj){
8 return true;
9 }
11 static void Main () {}