aboutsummaryrefslogtreecommitdiff
path: root/build.rs
blob: 70e301bdb3cb5e5a36753dc2d8482e8ddacee4eb (plain)
1
2
3
4
5
6
fn main() {
    let ac = autocfg::new();
    if ac.probe_expression("(0..10).step_by(2).rev()") {
        autocfg::emit("step_by");
    }
}