[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs0659-2.cs
1 // CS0659: `Test.Test' overrides Object.Equals(object) but does not override Object.GetHashCode()
2 // Line: 7
3 // Compiler options: -warnaserror -warn:3
4
5 namespace Test{  
6     public partial class Test{  
7         public override bool Equals(object obj){  
8             return true;  
9         }  
10           
11         static void Main () {}
12     }  
13 }