Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
deprecation
/
atomic_initializers.fixed
blob: 8738f744e11d8ee0fdb30f4dd424a22d28aeeffe [
file
] [
log
] [
blame
]
//@ 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
()
{}