Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-20605.rs
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
()
{}