blob: 087943910bd7c8468dab7b6fff85f55a44dbca1c [file] [log] [blame]
extern crate autocfg;
fn main() {
let ac = autocfg::new();
// Allows `#[cfg(rustc_1_63)]` to be used in code
ac.emit_rustc_version(1, 63);
// Re-run if this file changes
autocfg::rerun_path("build.rs");
}