5f0b3509a7ddc0f8e363fef4c544740c4c9283cc
[mono.git] / mcs / tests / test-partial-13.cs
1 namespace Test{  
2     public partial class Test{  
3         public override bool Equals(object obj){  
4             return true;  
5         }  
6     }
7     public partial class Test{  
8         public override int GetHashCode(){  
9             return 1;  
10         }
11         static void Main () {}
12     }  
13 }