"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / tests / gtest-531.cs
blobe27fb1824f7f4c801cb7bad2458739dee2591a40
1 class ATop<T> : IA<T>
3 IA<T> list;
5 T[] IB<T>.ToArray (T[] t)
7 return null;
10 void IC.ToArray ()
14 public void Test ()
16 list = this;
17 list.ToArray (new T [0]);
18 list.ToArray ();
22 interface IA<U> : IC, IB<U>
26 interface IB<V> : IC
28 V[] ToArray (V[] array);
31 interface IC
33 void ToArray ();
36 class M
38 public static int Main ()
40 new ATop<short>().Test ();
41 return 0;