rust/tests/ui/moves/move-arg-2-unique.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
260 B
Rust
Raw Normal View History

//@ run-pass
fn test(foo: Box<Vec<isize>> ) { assert_eq!((*foo)[0], 10); }
pub fn main() {
let x = Box::new(vec![10]);
// Test forgetting a local by move-in
2013-02-15 10:44:18 +00:00
test(x);
// Test forgetting a temporary by move-in.
test(Box::new(vec![10]));
}