aboutsummaryrefslogtreecommitdiff
path: root/cfg-if/tests/xcrate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cfg-if/tests/xcrate.rs')
-rw-r--r--cfg-if/tests/xcrate.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/cfg-if/tests/xcrate.rs b/cfg-if/tests/xcrate.rs
new file mode 100644
index 0000000..e7b4a36
--- /dev/null
+++ b/cfg-if/tests/xcrate.rs
@@ -0,0 +1,14 @@
+cfg_if::cfg_if! {
+ if #[cfg(foo)] {
+ fn works() -> bool { false }
+ } else if #[cfg(test)] {
+ fn works() -> bool { true }
+ } else {
+ fn works() -> bool { false }
+ }
+}
+
+#[test]
+fn smoke() {
+ assert!(works());
+}