aboutsummaryrefslogtreecommitdiff
path: root/proc-macro2/tests/features.rs
diff options
context:
space:
mode:
Diffstat (limited to 'proc-macro2/tests/features.rs')
-rw-r--r--proc-macro2/tests/features.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/proc-macro2/tests/features.rs b/proc-macro2/tests/features.rs
new file mode 100644
index 0000000..073f6e6
--- /dev/null
+++ b/proc-macro2/tests/features.rs
@@ -0,0 +1,8 @@
+#[test]
+#[ignore]
+fn make_sure_no_proc_macro() {
+ assert!(
+ !cfg!(feature = "proc-macro"),
+ "still compiled with proc_macro?"
+ );
+}