We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c663f06 commit 64224d3Copy full SHA for 64224d3
exercises/move_semantics/move_semantics5.rs
@@ -8,6 +8,7 @@
8
9
// I AM NOT DONE
10
11
+#[test]
12
fn main() {
13
let mut x = 100;
14
let y = &mut x;
info.toml
@@ -340,7 +340,7 @@ So the end goal is to:
340
[[exercises]]
341
name = "move_semantics5"
342
path = "exercises/move_semantics/move_semantics5.rs"
343
-mode = "compile"
+mode = "test"
344
hint = """
345
Carefully reason about the range in which each mutable reference is in
346
scope. Does it help to update the value of referent (x) immediately after
0 commit comments