blob: 363bda75f16955a20f6f4bac58bd1dce606f9e7a [file] [log] [blame]
// run-rustfix
// build-pass (FIXME(62277): could be 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 item
fn main() {}