josh_hates_closures 0.1.1

A useless, anti-closure expression macro
Documentation
#![feature(stmt_expr_attributes)]
#![feature(proc_macro_hygiene)]

use josh_hates_closures::not_a_closure;

fn main() {
    let _ = #[not_a_closure] |a| { format!("hi: {}", a) };
}