summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/alias/cross-crate.rs
blob: 8919c643400a53f3dd93eeab07edf3563a9b0168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// aux-build:send_sync.rs

#![feature(trait_alias)]

extern crate send_sync;

use std::rc::Rc;
use send_sync::SendSync;

fn use_alias<T: SendSync>() {}

fn main() {
    use_alias::<u32>();
    use_alias::<Rc<u32>>();
    //~^ ERROR `Rc<u32>` cannot be sent between threads safely [E0277]
    //~^^ ERROR `Rc<u32>` cannot be shared between threads safely [E0277]
}