Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-455.cs
1 struct Foo {
2         public int x;
3         public override int GetHashCode ()
4         {
5                 return base.GetHashCode ();
6         }
7 }
8
9 class Test {
10         public static void Main ()
11         {
12                 Foo foo = new Foo ();
13                 System.Console.WriteLine (foo.GetHashCode ());
14         }
15 }