rust/tests/pretty/do1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
101 B
Rust
Raw Normal View History

2013-02-07 11:56:49 -06:00
//@ pp-exact
2012-06-29 17:37:17 -05:00
fn f<F>(f: F) where F: Fn(isize) { f(10) }
2012-06-29 17:37:17 -05:00
fn main() { f(|i| { assert_eq!(i, 10) }) }