// CS0037: Cannot convert null to `int' because it is a value type // Line: 9 public class Test { static void Main () { var e = new[] { 1, null }; } }