]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/builtin-superkinds-capabilities-xc.rs
rand: Use fill() instead of read()
[rust.git] / src / test / run-pass / builtin-superkinds-capabilities-xc.rs
1 // Copyright 2013-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 // ignore-fast
12
13 // aux-build:trait_superkinds_in_metadata.rs
14
15 // Tests "capabilities" granted by traits with super-builtin-kinds,
16 // even when using them cross-crate.
17
18 extern crate trait_superkinds_in_metadata;
19 use trait_superkinds_in_metadata::{RequiresRequiresFreezeAndSend, RequiresFreeze};
20
21 #[deriving(Eq)]
22 struct X<T>(T);
23
24 impl <T: Freeze> RequiresFreeze for X<T> { }
25 impl <T: Freeze+Send> RequiresRequiresFreezeAndSend for X<T> { }
26
27 fn foo<T: RequiresRequiresFreezeAndSend>(val: T, chan: Sender<T>) {
28     chan.send(val);
29 }
30
31 pub fn main() {
32     let (tx, rx) = channel();
33     foo(X(31337), tx);
34     assert!(rx.recv() == X(31337));
35 }