]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/kindck-send-object1.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / compile-fail / kindck-send-object1.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test which object types are considered sendable. This test
12 // is broken into two parts because some errors occur in distinct
13 // phases in the compiler. See kindck-send-object2.rs as well!
14
15 use std::marker::MarkerTrait;
16
17 fn assert_send<T:Send+'static>() { }
18 trait Dummy : MarkerTrait { }
19
20 // careful with object types, who knows what they close over...
21 fn test51<'a>() {
22     assert_send::<&'a Dummy>();
23     //~^ ERROR the trait `core::marker::Sync` is not implemented
24 }
25 fn test52<'a>() {
26     assert_send::<&'a (Dummy+Sync)>();
27     //~^ ERROR does not fulfill the required lifetime
28 }
29
30 // ...unless they are properly bounded
31 fn test60() {
32     assert_send::<&'static (Dummy+Sync)>();
33 }
34 fn test61() {
35     assert_send::<Box<Dummy+Send>>();
36 }
37
38 // closure and object types can have lifetime bounds which make
39 // them not ok
40 fn test_71<'a>() {
41     assert_send::<Box<Dummy+'a>>();
42     //~^ ERROR the trait `core::marker::Send` is not implemented
43 }
44
45 fn main() { }