blob: 17b7d32ebf59b95e47fd19df991b0d92838b2fad [file] [log] [blame]
fn changer<'a>(mut things: Box<dyn Iterator<Item=&'a mut u8>>) {
for item in *things { *item = 0 }
//~^ ERROR the size for values of type
}
fn main() {}