mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
8 lines
152 B
Rust
8 lines
152 B
Rust
extern crate autocfg;
|
|
|
|
pub fn main() {
|
|
if autocfg::new().probe_rustc_version(1, 36) {
|
|
println!("cargo:rustc-cfg=has_maybe_uninit");
|
|
}
|
|
}
|