    1|      2|fn func(x: i32) -> bool {
    2|      2|    if x < 0 { true } else { false }
                             ^1            ^1
    3|      2|}
    4|       |
    5|       |#[test]
    6|      2|fn test() {
    7|       |    #[cfg(feature = "a")]
    8|      1|    assert!(!func(1));
    9|       |    #[cfg(feature = "b")]
   10|      1|    assert!(func(-1));
   11|      2|}