mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
Uncomment fixme associated with #184 in loop.rs as this issue is fixed.
This commit is contained in:
@@ -23,8 +23,7 @@ fn main() {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user