30862a64c2
This is required by the check-fast target because each test is slurped up into a submodule.
9 lines
86 B
Rust
9 lines
86 B
Rust
fn run(f: &fn()) {
|
|
f()
|
|
}
|
|
|
|
pub fn main() {
|
|
let f: ~fn() = || ();
|
|
run(f);
|
|
}
|