2010-06-23 21:03:09 -07:00
|
|
|
fn main() {
|
|
|
|
// This just tests whether the vec leaks its members.
|
2010-07-23 12:32:12 -07:00
|
|
|
|
|
|
|
let vec[mutable @tup(int,int)] pvec =
|
2010-12-13 09:25:19 -08:00
|
|
|
vec(mutable @tup(1,2), @tup(3,4), @tup(5,6));
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|