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:
commit
687acdf84e
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -29,8 +29,7 @@ fn main() {
|
||||
|
||||
while let Some(i) = x.find('s') {
|
||||
x.update();
|
||||
// FIXME #184
|
||||
// continue;
|
||||
// continue 'foo;
|
||||
continue;
|
||||
continue 'foo;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user