mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 09:29:33 +00:00
8 lines
161 B
Rust
8 lines
161 B
Rust
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);
|
|
}
|