1fn main() {
2 let cfg = autocfg::new();
3
4 if cfg.probe_rustc_version(1, 61) {
5 println!("cargo:rustc-cfg=has_const_fn_trait_bound");
6 }
7}
8