An approximation of "capture-by-clone" lambdas in Rust.
Requires nightly and #![feature(proc_macro_hygiene, stmt_expr_attributes)]
Turns this: ```rust
into this:
rust
{
let honk0 = ::core::clone::Clone::clone(&foo.bar);
move || docall(honk_0)
}
```