9 interface INativeThingy
<T
> : IBaseThingy
11 int IBaseThingy
.Foo () {
16 class NativeThingy
: INativeThingy
<string>
22 public static int test_0_dim_override()
24 var thingy
= new NativeThingy ();
25 var ithingy
= (IBaseThingy
)thingy
;
26 int i
= ithingy
.Foo ();
30 public static int Main (string[] args
) {
31 return TestDriver
.RunTests (typeof (Test
), args
);