diff --git a/src/doc/trpl/move-semantics.md b/src/doc/trpl/move-semantics.md index 0e7a1130561e..b5bd53e1d75a 100644 --- a/src/doc/trpl/move-semantics.md +++ b/src/doc/trpl/move-semantics.md @@ -40,7 +40,7 @@ println!("v[0] is: {}", v[0]); A similar thing happens if we define a function which takes ownership, and try to use something after we’ve passed it as an argument: -```rust +```rust,ignore fn take(v: Vec) { // what happens here isn’t important. }