7 lines
158 B
Rust
7 lines
158 B
Rust
fn main() {
|
|
// This just tests whether the vec leaks its members.
|
|
|
|
let vec[mutable @tup(int,int)] pvec =
|
|
[mutable @tup(1,2), @tup(3,4), @tup(5,6)];
|
|
}
|