mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
252 B
Rust
12 lines
252 B
Rust
//@ check-pass
|
|
pub struct Chan;
|
|
pub struct ChanSelect<'c, T> {
|
|
chans: Vec<(&'c Chan, T)>,
|
|
}
|
|
impl<'c, T> ChanSelect<'c, T> {
|
|
pub fn add_recv_ret(&mut self, chan: &'c Chan, ret: T)
|
|
{
|
|
self.chans.push((chan, ret));
|
|
}
|
|
}
|
|
fn main() {}
|