mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
258 B
Rust
13 lines
258 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]));
|
|
}
|