Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
deprecation
/
atomic_initializers.rs
blob: c984fa2e8d8f93bf3555f2d758264dc41915911a [
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
=
ATOMIC_ISIZE_INIT
;
//~^ WARN use of deprecated constant
fn
main
()
{}