Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
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
()
{}