2013-08-19 16:15:25 -05:00
|
|
|
// Basic test for traits inheriting from the builtin kinds, checking
|
|
|
|
// the type contents of the implementing type (that's not a typaram).
|
|
|
|
|
2013-08-16 17:21:02 -05:00
|
|
|
trait Foo : Send { }
|
|
|
|
|
2015-02-17 06:48:32 -06:00
|
|
|
impl Foo for std::rc::Rc<i8> { }
|
2020-09-02 02:40:56 -05:00
|
|
|
//~^ ERROR `Rc<i8>` cannot be sent between threads safely
|
2013-08-16 17:21:02 -05:00
|
|
|
|
|
|
|
fn main() { }
|