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: 617f42d9b07acdffbce842b99a07ce8f04da3e66 (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 {
	public static void Main ()
	{
		Foo foo = new Foo ();
		System.Console.WriteLine (foo.GetHashCode ());
	}
}