]> git.proxmox.com Git - rustc.git/blob - src/test/ui/deprecation/atomic_initializers.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / deprecation / atomic_initializers.stderr
1 warning: use of deprecated item 'std::sync::atomic::ATOMIC_ISIZE_INIT': the `new` function is now preferred
2 --> $DIR/atomic_initializers.rs:8:27
3 |
4 LL | static FOO: AtomicIsize = ATOMIC_ISIZE_INIT;
5 | ^^^^^^^^^^^^^^^^^
6 |
7 = note: #[warn(deprecated)] on by default
8 help: use of deprecated item 'std::sync::atomic::ATOMIC_ISIZE_INIT': the `new` function is now preferred
9 |
10 LL | static FOO: AtomicIsize = AtomicIsize::new(0);
11 | ^^^^^^^^^^^^^^^^^^^
12