rust/src/test/run-pass/purity-infer.rs

6 lines
89 B
Rust
Raw Normal View History

fn something(f: pure fn()) { f(); }
fn main() {
something(|| log(error, "hi!") );
}