[System]: Add new internal X509Certificate2Impl.IntermediateCertificates.
[mono-project.git] / mono / tests / generic-unloading-sub.2.cs
blob453fd2b3a127d38224b28ace4924d0bafba13226
1 using System;
3 public class Gen<A,B,C> {}
5 public class main {
6 static object GenericFunc<A,B,C> () {
7 return new Gen<A,B,C> ();
10 static void DoGenericStuff () {
11 GenericFunc<object,object,object> ();
14 public static int Main () {
15 DoGenericStuff ();
16 return 0;