1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-12-11 23:27:23 +02:00

Fixing main function errors in move_semantics/

This commit is contained in:
Katharina Fey
2018-08-16 16:33:27 -05:00
parent 32a88c36db
commit 961d725227
5 changed files with 73 additions and 68 deletions

View File

@@ -1,7 +1,7 @@
// move_semantics1.rs
// Make me compile! Scroll down for hints :)
pub fn main() {
fn main() {
let vec0 = Vec::new();
let vec1 = fill_vec(vec0);