rust/tests/ui/kindck/kindck-send-object2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
527 B
Rust
Raw Normal View History

// Continue kindck-send-object1.rs.
fn assert_send<T:Send>() { }
2015-04-18 00:12:20 -05:00
trait Dummy { }
fn test50() {
2019-05-28 13:46:13 -05:00
assert_send::<&'static dyn Dummy>();
//~^ ERROR `(dyn Dummy + 'static)` cannot be shared between threads safely [E0277]
}
fn test53() {
2019-05-28 13:46:13 -05:00
assert_send::<Box<dyn Dummy>>();
//~^ ERROR `dyn Dummy` cannot be sent between threads safely
}
// ...unless they are properly bounded
fn test60() {
2019-05-28 13:46:13 -05:00
assert_send::<&'static (dyn Dummy + Sync)>();
}
fn test61() {
2019-05-28 13:46:13 -05:00
assert_send::<Box<dyn Dummy + Send>>();
}
fn main() { }