| D | tests.rs | 68 r#"#![cfg(all(foo, bar = "baz"))]"#, in test_cfg_expr_parser() 69 CfgExpr::All(vec![ in test_cfg_expr_parser() 76 r#"#![cfg(any(not(), all(), , bar = "baz",))]"#, in test_cfg_expr_parser() 79 CfgExpr::All(vec![]), in test_cfg_expr_parser() 92 check_dnf("#![cfg(all(a, b))]", expect![[r#"#![cfg(all(a, b))]"#]]); in smoke() 100 check_dnf("#![cfg(all(any(a, b), c))]", expect![[r#"#![cfg(any(all(a, c), all(b, c)))]"#]]); in distribute() 101 check_dnf("#![cfg(all(c, any(a, b)))]", expect![[r#"#![cfg(any(all(c, a), all(c, b)))]"#]]); in distribute() 103 "#![cfg(all(any(a, b), any(c, d)))]", in distribute() 104 expect![[r#"#![cfg(any(all(a, c), all(a, d), all(b, c), all(b, d)))]"#]], in distribute() 108 "#![cfg(all(any(a, b, c), any(d, e, f), g))]", in distribute() [all …]
|