summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/bad-method-typaram-kind.rs
blob: b088eae1c87025cc971c1589b656e3662dc79e0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn foo<T:'static>() {
    1.bar::<T>(); //~ ERROR `T` cannot be sent between threads safely
}

trait Bar {
    fn bar<T:Send>(&self);
}

impl Bar for usize {
    fn bar<T:Send>(&self) {
    }
}

fn main() {}