2013-08-19 15:54:58 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-08-21 14:52:31 -05:00
|
|
|
// xfail-fast
|
|
|
|
|
2013-08-19 15:54:58 -05:00
|
|
|
// aux-build:trait_superkinds_in_metadata.rs
|
|
|
|
|
2013-08-19 16:15:25 -05:00
|
|
|
// Tests "capabilities" granted by traits with super-builtin-kinds,
|
|
|
|
// even when using them cross-crate.
|
|
|
|
|
2013-08-19 15:54:58 -05:00
|
|
|
extern mod trait_superkinds_in_metadata;
|
2013-08-19 16:15:25 -05:00
|
|
|
use trait_superkinds_in_metadata::{RequiresRequiresFreezeAndSend, RequiresFreeze};
|
2013-08-19 15:54:58 -05:00
|
|
|
|
|
|
|
#[deriving(Eq)]
|
|
|
|
struct X<T>(T);
|
|
|
|
|
2013-08-19 16:15:25 -05:00
|
|
|
impl <T: Freeze> RequiresFreeze for X<T> { }
|
|
|
|
impl <T: Freeze+Send> RequiresRequiresFreezeAndSend for X<T> { }
|
2013-08-19 15:54:58 -05:00
|
|
|
|
2013-12-05 20:19:06 -06:00
|
|
|
fn foo<T: RequiresRequiresFreezeAndSend>(val: T, chan: Chan<T>) {
|
2013-08-19 15:54:58 -05:00
|
|
|
chan.send(val);
|
|
|
|
}
|
|
|
|
|
2014-01-03 17:30:54 -06:00
|
|
|
pub fn main() {
|
2013-12-05 20:19:06 -06:00
|
|
|
let (p,c) = Chan::new();
|
2013-08-19 15:54:58 -05:00
|
|
|
foo(X(31337), c);
|
|
|
|
assert!(p.recv() == X(31337));
|
|
|
|
}
|