Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / gtest-579.cs
blob615312c36b299d98b9c13c7753d2307988b4dfd8
1 public interface IA<T>
6 public class G<U, V> : IA<G<V, string>>
10 public class C
12 static bool Test_2 <T2>(T2[] t)
14 return t is byte[];
17 public static int Main ()
19 G<long, short> p = new G<long, short> ();
20 if (p is IA<G<string, string>>)
21 return 1;
23 if (Test_2 (new int [0]))
24 return 2;
26 if (!Test_2 (new byte [0]))
27 return 3;
29 return 0;