15 lines
282 B
Rust
15 lines
282 B
Rust
|
//@ known-bug: #127628
|
||
|
//@ compile-flags: -Zpolonius=next
|
||
|
|
||
|
use std::io::{self, Read};
|
||
|
|
||
|
pub struct Container<'a> {
|
||
|
reader: &'a mut dyn Read,
|
||
|
}
|
||
|
|
||
|
impl<'a> Container {
|
||
|
pub fn wrap<'s>(reader: &'s mut dyn io::Read) -> Container<'s> {
|
||
|
Container { reader: reader }
|
||
|
}
|
||
|
}
|