summaryrefslogtreecommitdiffstats
path: root/tests/features.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 13:39:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 13:39:29 +0000
commit1bbf3d3cebcb6ff09231ee43296d62d6a93fcfd0 (patch)
tree6dc13e28a6078185b871acc5b7f9a2df6c5d948a /tests/features.rs
parentInitial commit. (diff)
downloadrust-proc-macro2-1bbf3d3cebcb6ff09231ee43296d62d6a93fcfd0.tar.xz
rust-proc-macro2-1bbf3d3cebcb6ff09231ee43296d62d6a93fcfd0.zip
Adding upstream version 1.0.76.upstream/1.0.76
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/features.rs')
-rw-r--r--tests/features.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/features.rs b/tests/features.rs
new file mode 100644
index 0000000..073f6e6
--- /dev/null
+++ b/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?"
+ );
+}