]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/issue-3991.rs
test: Automatically remove all `~[T]` from tests.
[rust.git] / src / test / run-pass / issue-3991.rs
index d5dd090009a1c70e84b748fdaec0d33e6a7dce16..07a520db20b98bc9ebf802ce703f347368cbea5c 100644 (file)
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 struct HasNested {
-    nest: ~[~[int]],
+    nest: Vec<Vec<int> > ,
 }
 
 impl HasNested {