Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
4173ceb4e
/
.
/
crates
/
lock_api
/
build.rs
blob: 7aeaabdf95b1de92a8c67626ef23ec04e36f4b71 [
file
] [
log
] [
blame
]
fn
main
()
{
let
cfg
=
autocfg
::
new
();
println
!(
"cargo:rerun-if-changed=build.rs"
);
println
!(
"cargo:rustc-check-cfg=cfg(has_const_fn_trait_bound)"
);
if
cfg
.
probe_rustc_version
(
1
,
61
)
{
println
!(
"cargo:rustc-cfg=has_const_fn_trait_bound"
);
}
}