using System; class G { } public class Program { static void Test (G> g) { } static void Main () { dynamic d = new G> (); Test (d); } }