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: 638e2fa29e0eee4f3eedb137ff5d5cde8dcd4a8d (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;  
	}
	public static void Main () {}
    }  
}