]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deprecation/atomic_initializers.fixed
d8485ed7da169e552bd41a47f52e74346f3267d7
[rust.git] / src / test / ui / deprecation / atomic_initializers.fixed
1 // run-rustfix
2 // check-pass
3
4 #[allow(deprecated, unused_imports)]
5 use std::sync::atomic::{AtomicIsize, ATOMIC_ISIZE_INIT};
6
7 #[allow(dead_code)]
8 static FOO: AtomicIsize = AtomicIsize::new(0);
9 //~^ WARN use of deprecated item
10
11 fn main() {}