1 2 3 4 5
// pp-exact fn f<F>(f: F) where F: Fn(isize) { f(10) } fn main() { f(|i| { assert_eq!(i, 10) }) }