using System; public class C { static void M (T t) where T : new () { } public static int Main () { M (null); return 0; } }