mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-12 03:12:41 +00:00
9 lines
152 B
Rust
9 lines
152 B
Rust
#[test]
|
|
#[ignore]
|
|
fn make_sure_no_proc_macro() {
|
|
assert!(
|
|
!cfg!(feature = "proc-macro"),
|
|
"still compiled with proc_macro?"
|
|
);
|
|
}
|