One or two tests became build-pass without the FIXME because they really needed build-pass (were failing without it). Helps with #62277
11 lines
237 B
Rust
11 lines
237 B
Rust
// 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 item
|
|
|
|
fn main() {}
|