Merge pull request #5428 from kumpera/wasm-support-p2
[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         public static void Main () {}
12     }  
13 }