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