blob: 7792b8bb1162d3f6d296068a2ec0bbdb5ecd9197 [file]
fn test(foo: Box<Vec<isize>>) {
assert_eq!((*foo)[0], 10);
}
fn main() {
let x = Box::new(vec![10]);
// Test forgetting a local by move-in
test(x);
}