main()1 fn main() {
2     if let Some(true) = version_check::is_feature_flaggable() {
3         println!("cargo:rustc-cfg=nightly");
4     }
5 }
6