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

test-455.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 754f344ae969d8d147b90d8ed521fb01e9dc4961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct Foo {
	public int x;
	public override int GetHashCode ()
	{
		return base.GetHashCode ();
	}
}

class Test {
	static void Main ()
	{
		Foo foo = new Foo ();
		System.Console.WriteLine (foo.GetHashCode ());
	}
}