mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
12 lines
243 B
Rust
12 lines
243 B
Rust
// run-rustfix
|
|
// check-pass
|
|
|
|
#[allow(deprecated, unused_imports)]
|
|
use std::sync::atomic::{AtomicIsize, ATOMIC_ISIZE_INIT};
|
|
|
|
#[allow(dead_code)]
|
|
static FOO: AtomicIsize = AtomicIsize::new(0);
|
|
//~^ WARN use of deprecated constant
|
|
|
|
fn main() {}
|