rust/tests/pass/move-arg-2-unique.rs
2022-06-20 16:09:45 -07:00

12 lines
190 B
Rust

#![feature(box_syntax)]
fn test(foo: Box<Vec<isize>>) {
assert_eq!((*foo)[0], 10);
}
pub fn main() {
let x = box vec![10];
// Test forgetting a local by move-in
test(x);
}