mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
550 B
Rust
22 lines
550 B
Rust
// run-pass
|
|
// Tests "capabilities" granted by traits that inherit from super-
|
|
// builtin-kinds, e.g., if a trait requires Send to implement, then
|
|
// at usage site of that trait, we know we have the Send capability.
|
|
|
|
|
|
use std::sync::mpsc::{channel, Sender, Receiver};
|
|
|
|
trait Foo : Send { }
|
|
|
|
impl <T: Send> Foo for T { }
|
|
|
|
fn foo<T: Foo + 'static>(val: T, chan: Sender<T>) {
|
|
chan.send(val).unwrap();
|
|
}
|
|
|
|
pub fn main() {
|
|
let (tx, rx): (Sender<isize>, Receiver<isize>) = channel();
|
|
foo(31337, tx);
|
|
assert_eq!(rx.recv().unwrap(), 31337);
|
|
}
|