diff --git a/tests/w1_2.rs b/tests/w1_2.rs index 96aa0818dd7401acc1dc74d54ba184bf05be039a..768ae0684743f9d5cf3d55968bd5a82bf590030f 100644 --- a/tests/w1_2.rs +++ b/tests/w1_2.rs @@ -61,7 +61,7 @@ fn _if_then_else_and_while() { let mut c: i32 = 1; while (b < 10) { c = c * 2; - }; // added ";" here... to make parsing easier, it is still valid Rust though + } // added ";" here... to make parsing easier, it is still valid Rust though c } }