diff options
Diffstat (limited to 'third_party/rust/cfg-if/tests/xcrate.rs')
-rw-r--r-- | third_party/rust/cfg-if/tests/xcrate.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/rust/cfg-if/tests/xcrate.rs b/third_party/rust/cfg-if/tests/xcrate.rs new file mode 100644 index 0000000000..e7b4a362ad --- /dev/null +++ b/third_party/rust/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()); +} |