mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
13 lines
259 B
Rust
13 lines
259 B
Rust
//@ 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
|
|
test(x);
|
|
|
|
// Test forgetting a temporary by move-in.
|
|
test(Box::new(vec![10]));
|
|
}
|