fix run-make test

This commit is contained in:
Jorge Aparicio 2015-01-04 23:33:35 -05:00
parent 7d5b0454e9
commit d6a948e8f4

View file

@ -19,7 +19,7 @@ impl Drop for A {
}
}
pub fn callback(f: ||) {
pub fn callback<F>(f: F) where F: FnOnce() {
let _a = A;
f();
}