rust/tests/ui/issues/issue-29048.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
251 B
Rust
Raw Normal View History

// 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() {}