using System;
using System.Linq;
public class Program
{
public static void Main()
// nullable
int?[] i = new int?[] { 5, 2, 0, 1, 3, 1, 4 };
// Has no error
var z = i.Where(x => false).Max(x => x);
}