using System;
using System.Linq;
public class Program
{
public static void Main()
var test = (new [] {1, 2, 3}).Select<int, int>(i =>
throw new InvalidOperationException();
});
// Rara waarom throwt die geen exception.
}