summaryrefslogtreecommitdiffstats
path: root/tests/ui/sync/suggest-once-cell.rs
blob: 82fca45b1a47f8786142d50bb74d5fed975f8bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(once_cell)]

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
}