From 74775eff7e0405939ef01a79d07133f8c31142d5 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Fri, 2 Jul 2010 12:32:28 -0700 Subject: [PATCH] Box the args entering the vec-drop test. --- src/test/run-pass/vec-drop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/run-pass/vec-drop.rs b/src/test/run-pass/vec-drop.rs index 267c7a7864e..fff9a1ee64b 100644 --- a/src/test/run-pass/vec-drop.rs +++ b/src/test/run-pass/vec-drop.rs @@ -1,4 +1,4 @@ fn main() { // This just tests whether the vec leaks its members. - let vec[@tup(int,int)] pvec = vec(tup(1,2),tup(3,4),tup(5,6)); + let vec[@tup(int,int)] pvec = vec(@tup(1,2),@tup(3,4),@tup(5,6)); }