]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/kindck-send-object1.rs
Doc says to avoid mixing allocator instead of forbiding it
[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 fn assert_send<T:Send>() { }
16 trait Dummy { }
17
18 // careful with object types, who knows what they close over...
19 fn test51<'a>() {
20     assert_send::<&'a Dummy>(); //~ ERROR does not fulfill the required lifetime
21 }
22 fn test52<'a>() {
23     assert_send::<&'a Dummy+Send>(); //~ ERROR does not fulfill the required lifetime
24 }
25
26 // ...unless they are properly bounded
27 fn test60() {
28     assert_send::<&'static Dummy+Send>();
29 }
30 fn test61() {
31     assert_send::<Box<Dummy+Send>>();
32 }
33
34 // closure and object types can have lifetime bounds which make
35 // them not ok
36 fn test_70<'a>() {
37     assert_send::<proc():'a>(); //~ ERROR does not fulfill the required lifetime
38 }
39
40 fn test_71<'a>() {
41     assert_send::<Box<Dummy+'a>>(); //~ ERROR does not fulfill the required lifetime
42 }
43
44 fn main() { }