Uncomment fixme associated with #184 in loop.rs as this issue is fixed.

This commit is contained in:
Bryce Van Dyk 2017-10-04 22:02:28 +13:00
parent 6e41100725
commit 3422ebadf3
2 changed files with 4 additions and 6 deletions

View file

@ -23,8 +23,7 @@ let x = loop { do_forever(); };
while let Some(i) = x.find('s')
{
x.update();
// FIXME #184
// continue;
// continue 'foo;
continue;
continue 'foo;
}
}

View file

@ -29,8 +29,7 @@ fn main() {
while let Some(i) = x.find('s') {
x.update();
// FIXME #184
// continue;
// continue 'foo;
continue;
continue 'foo;
}
}