mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
251 B
Rust
13 lines
251 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() {}
|