]> git.proxmox.com Git - rustc.git/blob - src/test/run-pass/move-arg-2-unique.rs
fa69731963a30fa0d0f61c14292b5dc1fd1b7296
[rustc.git] / src / test / run-pass / move-arg-2-unique.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 #![allow(unknown_features)]
13 #![feature(box_syntax)]
14
15 fn test(foo: Box<Vec<isize>> ) { assert!(((*foo)[0] == 10)); }
16
17 pub fn main() {
18 let x = box vec!(10);
19 // Test forgetting a local by move-in
20 test(x);
21
22 // Test forgetting a temporary by move-in.
23 test(box vec!(10));
24 }