Uncomment fixme associated with #184 in loop.rs as this issue is fixed.
This commit is contained in:
parent
6e41100725
commit
3422ebadf3
2 changed files with 4 additions and 6 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue