// Compiler options: -warnaserror // No CS1720 warning using System; class C { static T M () where T : struct { return ((Nullable)null).GetValueOrDefault (); } public static int Main () { if (M () != 0) return 1; return 0; } }