2021-11-12 23:43:43 -06:00
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::io::Read;
|
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
fn inner(mut foo: &[u8]) {
|
|
|
|
let refcell = RefCell::new(&mut foo);
|
2022-04-01 12:13:25 -05:00
|
|
|
//~^ ERROR `foo` does not live long enough
|
2021-11-12 23:43:43 -06:00
|
|
|
let read = &refcell as &RefCell<dyn Read>;
|
2022-04-01 12:13:25 -05:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2021-11-12 23:43:43 -06:00
|
|
|
|
|
|
|
read_thing(read);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_thing(refcell: &RefCell<dyn Read>) {}
|