features.rs 152 B

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