From bc7c2a0f7e8ae6393768c481ec9e467eef52f128 Mon Sep 17 00:00:00 2001 From: Per Lindgren <per.lindgren@ltu.se> Date: Wed, 16 Sep 2020 17:17:45 +0200 Subject: [PATCH] added tests from course repo --- tests/w1_2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/w1_2.rs b/tests/w1_2.rs index 96aa081..768ae06 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 } } -- GitLab