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