Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / bug-59286.cs
1 using System;
2
3 class A : T {}
4 class T {
5         static int Main ()
6         {
7                 object o = (T [][]) (object) (new A [][] {});
8                 return o.GetHashCode () - o.GetHashCode ();
9         }
10 }
11