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