1 2 3 4 5 6 7
// Test a rather underspecified example: fn main() { let f = {|i| i}; assert f(2) == 2; assert f(5) == 5; }