mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 09:40:02 +00:00
17 lines
217 B
Rust
17 lines
217 B
Rust
// revisions:rpass1 rpass2 rpass3
|
|
|
|
// See issue #57692.
|
|
|
|
#![allow(warnings)]
|
|
|
|
fn main() {
|
|
#[cfg(rpass1)]
|
|
{
|
|
static map: u64 = 0;
|
|
}
|
|
#[cfg(not(rpass1))]
|
|
{
|
|
static MAP: u64 = 0;
|
|
}
|
|
}
|