main()1 fn main() {
2     let ac = autocfg::new();
3     if ac.probe_expression("(0..10).step_by(2).rev()") {
4         autocfg::emit("step_by");
5     }
6 }
7