Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-565.cs
1 // Compiler options: -warn:4 -warnaserror
2
3 class T
4 {
5         public new bool Equals (object obj)
6         {
7                 return true;
8         }
9
10         public static void Main ()
11         { }
12 }