blob: dfe0ab59203e5cdc8dc48b4a115b51ed5c76286e [file] [log] [blame]
pub trait FnBox {
fn call_box(self: Box<Self>);
}
impl<F: FnOnce()> FnBox for F {
fn call_box(self: Box<Self>) {
(*self)()
}
}