2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-08-19 15:54:58 -05:00
|
|
|
// 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
|
|
|
|
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.
|
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate trait_superkinds_in_metadata;
|
2014-12-22 11:04:23 -06:00
|
|
|
|
2014-12-23 13:53:35 -06:00
|
|
|
use std::sync::mpsc::{channel, Sender, Receiver};
|
2014-03-21 18:44:26 -05:00
|
|
|
use trait_superkinds_in_metadata::{RequiresRequiresShareAndSend, RequiresShare};
|
2013-08-19 15:54:58 -05:00
|
|
|
|
2014-12-30 22:32:49 -06:00
|
|
|
#[derive(PartialEq)]
|
2013-08-19 15:54:58 -05:00
|
|
|
struct X<T>(T);
|
|
|
|
|
2014-08-05 18:40:04 -05:00
|
|
|
impl <T: Sync> RequiresShare for X<T> { }
|
|
|
|
impl <T: Sync+Send> RequiresRequiresShareAndSend for X<T> { }
|
2013-08-19 15:54:58 -05:00
|
|
|
|
2014-03-21 18:44:26 -05:00
|
|
|
fn foo<T: RequiresRequiresShareAndSend>(val: T, chan: Sender<T>) {
|
2014-12-23 13:53:35 -06:00
|
|
|
chan.send(val).unwrap();
|
2013-08-19 15:54:58 -05:00
|
|
|
}
|
|
|
|
|
2014-01-03 17:30:54 -06:00
|
|
|
pub fn main() {
|
2014-04-21 16:58:52 -05:00
|
|
|
let (tx, rx): (Sender<X<int>>, Receiver<X<int>>) = channel();
|
|
|
|
foo(X(31337i), tx);
|
2014-12-23 13:53:35 -06:00
|
|
|
assert!(rx.recv().unwrap() == X(31337i));
|
2013-08-19 15:54:58 -05:00
|
|
|
}
|