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