mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +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 = ATOMIC_ISIZE_INIT;
|
|
//~^ WARN use of deprecated constant
|
|
|
|
fn main() {}
|