Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-479.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71d7b7609a14ae877d070e2201d8a17e8da93c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Test{  
    public partial class Test{  
	public override bool Equals(object obj){  
	    return true;  
	}  
	  
	public override int GetHashCode(){  
	    return 1;  
	}
	static void Main () {}
    }  
}