mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 09:22:35 +00:00
12 lines
243 B
Plaintext
12 lines
243 B
Plaintext
// 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() {}
|