Merge pull request #2026 from SingingTree/remove-184-fixme

Uncomment fixme associated with #184 in loop.rs as this issue is fixed.
This commit is contained in:
Seiichi Uchida 2017-10-04 18:55:07 +09:00 committed by GitHub
commit 687acdf84e
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;
}
}