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