This does not compile: ``` rust use std::ops::Fn; fn foo(i: int) -> int { i } fn main() { println!("{}", foo.call(1)); } ```