2014-07-22 07:46:36 -04:00
|
|
|
// Test which object types are considered sendable. This test
|
|
|
|
// is broken into two parts because some errors occur in distinct
|
|
|
|
// phases in the compiler. See kindck-send-object2.rs as well!
|
|
|
|
|
2015-02-17 23:48:32 +11:00
|
|
|
fn assert_send<T:Send+'static>() { }
|
2015-04-17 22:12:20 -07:00
|
|
|
trait Dummy { }
|
2014-07-22 07:46:36 -04:00
|
|
|
|
|
|
|
// careful with object types, who knows what they close over...
|
|
|
|
fn test51<'a>() {
|
2014-09-18 11:08:04 -04:00
|
|
|
assert_send::<&'a Dummy>();
|
2018-05-26 20:51:50 -07:00
|
|
|
//~^ ERROR `(dyn Dummy + 'a)` cannot be shared between threads safely [E0277]
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
fn test52<'a>() {
|
2015-02-17 23:48:32 +11:00
|
|
|
assert_send::<&'a (Dummy+Sync)>();
|
2015-02-16 11:58:47 -05:00
|
|
|
//~^ ERROR does not fulfill the required lifetime
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ...unless they are properly bounded
|
|
|
|
fn test60() {
|
2015-02-17 23:48:32 +11:00
|
|
|
assert_send::<&'static (Dummy+Sync)>();
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
fn test61() {
|
|
|
|
assert_send::<Box<Dummy+Send>>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// closure and object types can have lifetime bounds which make
|
|
|
|
// them not ok
|
|
|
|
fn test_71<'a>() {
|
2014-09-18 11:08:04 -04:00
|
|
|
assert_send::<Box<Dummy+'a>>();
|
2018-05-26 20:51:50 -07:00
|
|
|
//~^ ERROR `(dyn Dummy + 'a)` cannot be sent between threads safely
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|