1#[test] 2#[ignore] 3fn make_sure_no_proc_macro() { 4 assert!( 5 !cfg!(feature = "proc-macro"), 6 "still compiled with proc_macro?" 7 ); 8} 9