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 if ac.probe_expression("{ fn foo<const N: usize>() {} }") { 7 autocfg::emit("min_const_generics"); 8 } 9 } 10