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

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

33 lines
909 B
Rust
Raw Normal View History

// 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!
fn assert_send<T:Send+'static>() { }
2015-04-17 22:12:20 -07:00
trait Dummy { }
// 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>();
//~^ ERROR `(dyn Dummy + 'a)` cannot be shared between threads safely [E0277]
}
fn test52<'a>() {
2019-05-28 14:46:13 -04:00
assert_send::<&'a (dyn Dummy + Sync)>();
}
// ...unless they are properly bounded
fn test60() {
2019-05-28 14:46:13 -04:00
assert_send::<&'static (dyn Dummy + Sync)>();
}
fn test61() {
2019-05-28 14:46:13 -04:00
assert_send::<Box<dyn Dummy + Send>>();
}
// 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>>();
//~^ ERROR `(dyn Dummy + 'a)` cannot be sent between threads safely
}
fn main() { }