From 3422ebadf3f68b08a785a3ee4897ff2af733d0bc Mon Sep 17 00:00:00 2001 From: Bryce Van Dyk Date: Wed, 4 Oct 2017 22:02:28 +1300 Subject: [PATCH] Uncomment fixme associated with #184 in loop.rs as this issue is fixed. --- tests/source/loop.rs | 5 ++--- tests/target/loop.rs | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/source/loop.rs b/tests/source/loop.rs index e1266197a1cf..6e92cdc6c2c0 100644 --- a/tests/source/loop.rs +++ b/tests/source/loop.rs @@ -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; } } diff --git a/tests/target/loop.rs b/tests/target/loop.rs index 815f920a3c23..e02d73dc5504 100644 --- a/tests/target/loop.rs +++ b/tests/target/loop.rs @@ -29,8 +29,7 @@ fn main() { while let Some(i) = x.find('s') { x.update(); - // FIXME #184 - // continue; - // continue 'foo; + continue; + continue 'foo; } }