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