mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-03 11:29:34 +00:00
18 lines
243 B
Rust
18 lines
243 B
Rust
//@ revisions:rpass1 rpass2 rpass3
|
|
//@ ignore-backends: gcc
|
|
|
|
// See issue #57692.
|
|
|
|
#![allow(warnings)]
|
|
|
|
fn main() {
|
|
#[cfg(rpass1)]
|
|
{
|
|
static map: u64 = 0;
|
|
}
|
|
#[cfg(not(rpass1))]
|
|
{
|
|
static MAP: u64 = 0;
|
|
}
|
|
}
|