mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 14:44:25 +00:00
chore: update error message to error message given by rustc. error[E0596]
This commit is contained in:
parent
d140d49b61
commit
1ede3a82e9
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ name = "move_semantics1"
|
|||
path = "exercises/06_move_semantics/move_semantics1.rs"
|
||||
mode = "test"
|
||||
hint = """
|
||||
So you've got the "cannot borrow immutable local variable `vec` as mutable"
|
||||
So you've got the "cannot borrow `vec` as mutable, as it is not declared as mutable"
|
||||
error on the line where we push an element to the vector, right?
|
||||
|
||||
The fix for this is going to be adding one keyword, and the addition is NOT on
|
||||
|
|
Loading…
Reference in a new issue