mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
dc4ba57566
Move items not part of this stabilization to 'lazy_cell' or 'once_cell_try'
11 lines
378 B
Rust
11 lines
378 B
Rust
fn require_sync<T: Sync>() {}
|
|
//~^ NOTE required by this bound in `require_sync`
|
|
//~| NOTE required by a bound in `require_sync`
|
|
|
|
fn main() {
|
|
require_sync::<std::cell::OnceCell<()>>();
|
|
//~^ ERROR `OnceCell<()>` cannot be shared between threads safely
|
|
//~| NOTE `OnceCell<()>` cannot be shared between threads safely
|
|
//~| NOTE use `std::sync::OnceLock` instead
|
|
}
|