mirror of
https://github.com/notohh/rustlings.git
synced 2025-07-23 06:00:05 -04:00
Add errors to exercises that compile without user changes
This commit is contained in:
parent
4b0b7093e5
commit
a71bc62c29
2 changed files with 8 additions and 2 deletions
exercises/move_semantics
|
@ -16,7 +16,8 @@ fn main() {
|
|||
|
||||
}
|
||||
|
||||
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
|
||||
// `fill_vec()` no longer take `vec: Vec<i32>` as argument
|
||||
fn fill_vec() -> Vec<i32> {
|
||||
let mut vec = vec;
|
||||
|
||||
vec.push(22);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue