// check-pass fn test(f: F) {} fn main() { test(|x, y | {}); test(|x:&u64, y:&u64| {}); test(|x:&u64, y | {}); test(|x, y:&u64| {}); }