mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
17 lines
218 B
Rust
17 lines
218 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;
|
|
}
|
|
}
|