rust/tests/ui/sync/suggest-once-cell.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
378 B
Rust
Raw Normal View History

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
}