summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/restrict-type-argument.rs
blob: c4ebfbe922c094182ecbe9d5a65302421bf5f154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
fn is_send<T: Send>(val: T) {}

fn use_impl_sync(val: impl Sync) {
    is_send(val); //~ ERROR `impl Sync` cannot be sent between threads safely
}

fn use_where<S>(val: S) where S: Sync {
    is_send(val); //~ ERROR `S` cannot be sent between threads safely
}

fn use_bound<S: Sync>(val: S) {
    is_send(val); //~ ERROR `S` cannot be sent between threads safely
}

fn use_bound_2<
    S // Make sure we can synthezise a correct suggestion span for this case
    :
    Sync
>(val: S) {
    is_send(val); //~ ERROR `S` cannot be sent between threads safely
}

fn use_bound_and_where<S: Sync>(val: S) where S: std::fmt::Debug {
    is_send(val); //~ ERROR `S` cannot be sent between threads safely
}

fn use_unbound<S>(val: S) {
    is_send(val); //~ ERROR `S` cannot be sent between threads safely
}

fn main() {}