We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
AsyncFnMut
FnOnce
fn call_once<F>(_: impl FnOnce() -> F) {} fn main() { let mut i = 0; let c = async || { i += 1; }; call_once(c); }
Status