summaryrefslogtreecommitdiff
path: root/tests/ui/kindck/kindck-send-unsafe.rs~rust-lang_master
blob: 3f0444ec9c80777e08155259569ea70d5eb3a6ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
fn assert_send<T:Send>() { }

// unsafe ptrs are ok unless they point at unsendable things
fn test70() {
    assert_send::<*mut int>();
}
fn test71<'a>() {
    assert_send::<*mut &'a int>(); //~ ERROR does not fulfill the required lifetime
}

fn main() {
}