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>() {
|
2019-05-28 14:46:13 -04:00
|
|
|
assert_send::<&'a dyn 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>() {
|
2019-05-28 14:46:13 -04:00
|
|
|
assert_send::<&'a (dyn Dummy + Sync)>();
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ...unless they are properly bounded
|
|
|
|
fn test60() {
|
2019-05-28 14:46:13 -04:00
|
|
|
assert_send::<&'static (dyn Dummy + Sync)>();
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
fn test61() {
|
2019-05-28 14:46:13 -04:00
|
|
|
assert_send::<Box<dyn Dummy + Send>>();
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// closure and object types can have lifetime bounds which make
|
|
|
|
// them not ok
|
|
|
|
fn test_71<'a>() {
|
2019-05-28 14:46:13 -04:00
|
|
|
assert_send::<Box<dyn 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() { }
|