summaryrefslogtreecommitdiffstats
path: root/tests/rust/ignore.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rust/ignore.rs')
-rw-r--r--tests/rust/ignore.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/rust/ignore.rs b/tests/rust/ignore.rs
new file mode 100644
index 0000000..54ade32
--- /dev/null
+++ b/tests/rust/ignore.rs
@@ -0,0 +1,12 @@
+/// cbindgen:ignore
+#[no_mangle]
+pub extern "C" fn root() {}
+
+/// cbindgen:ignore
+///
+/// Something else.
+#[no_mangle]
+pub extern "C" fn another_root() {}
+
+#[no_mangle]
+pub extern "C" fn no_ignore_root() {}