2020-07-25 12:49:46 -05:00
|
|
|
warning: use of deprecated constant `std::sync::atomic::ATOMIC_ISIZE_INIT`: the `new` function is now preferred
|
2019-01-30 10:47:36 -06:00
|
|
|
--> $DIR/atomic_initializers.rs:8:27
|
|
|
|
|
|
|
|
|
LL | static FOO: AtomicIsize = ATOMIC_ISIZE_INIT;
|
2022-06-29 03:36:12 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2019-01-30 10:47:36 -06:00
|
|
|
|
|
2019-07-16 15:17:38 -05:00
|
|
|
= note: `#[warn(deprecated)]` on by default
|
2022-06-29 03:36:12 -05:00
|
|
|
help: replace the use of the deprecated constant
|
|
|
|
|
|
|
|
|
LL | static FOO: AtomicIsize = AtomicIsize::new(0);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~
|
2019-01-30 10:47:36 -06:00
|
|
|
|
2020-03-11 10:30:09 -05:00
|
|
|
warning: 1 warning emitted
|
|
|
|
|