rust/src/test/run-pass/mutable-vec-drop.rs
2011-07-27 15:54:33 +02:00

6 lines
No EOL
182 B
Rust

fn main() {
// This just tests whether the vec leaks its members.
let pvec: vec[mutable @{a: int, b: int}] =
[mutable @{a: 1, b: 2}, @{a: 3, b: 4}, @{a: 5, b: 6}];
}