Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
deprecation
/
atomic_initializers.fixed
blob: 4fb0aeeb573e0d64354eae92f55708a631b4c7d8 [
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
()
{}