]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-20605.rs
Re-blessed tests.
[rust.git] / src / test / ui / issues / issue-20605.rs
1 fn changer<'a>(mut things: Box<Iterator<Item=&'a mut u8>>) {
2     for item in *things { *item = 0 }
3 //~^ ERROR the size for values of type
4 }
5
6 fn main() {}