]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/deprecation/atomic_initializers.rs
report kind of deprecated item in message
[rust.git] / src / test / ui / deprecation / atomic_initializers.rs
index 00c5f7b0b1257dcfc28001fc07387d6ee03895de..1dcfd36d7d57593e1c1698956aa946162c0434a7 100644 (file)
@@ -1,11 +1,11 @@
 // run-rustfix
-// build-pass (FIXME(62277): could be check-pass?)
+// 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
+//~^ WARN use of deprecated constant
 
 fn main() {}