error[E0505]: cannot move out of `args` because it is borrowed
--> $DIR/ast_function.rs:10:10
|
9 | let fun = ast::Function::new(&name, &args).unwrap();
| ----- borrow of `args` occurs here
10 | drop(args);
| ^^^^ move out of `args` occurs here
11 | println!("{:?}",fun);
| --- borrow later used here