aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/vec-alloc-append.rs
diff options
context:
space:
mode:
authorMarijn Haverbeke <[email protected]>2011-05-06 22:13:13 +0200
committerMarijn Haverbeke <[email protected]>2011-05-06 22:51:19 +0200
commita3ec0b1f643d00b9418e4884bd7caa07bf052201 (patch)
tree82000510ac9c9cf3f0c7cf4ae5f3c6b123b559cb /src/test/run-pass/vec-alloc-append.rs
parentRegister new snapshots. (diff)
downloadrust-a3ec0b1f643d00b9418e4884bd7caa07bf052201.tar.xz
rust-a3ec0b1f643d00b9418e4884bd7caa07bf052201.zip
Rename std modules to be camelcased
(Have fun mergining your stuff with this.)
Diffstat (limited to 'src/test/run-pass/vec-alloc-append.rs')
-rw-r--r--src/test/run-pass/vec-alloc-append.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/vec-alloc-append.rs b/src/test/run-pass/vec-alloc-append.rs
index 616823ae..4327e789 100644
--- a/src/test/run-pass/vec-alloc-append.rs
+++ b/src/test/run-pass/vec-alloc-append.rs
@@ -6,7 +6,7 @@
use std;
fn slice[T](vec[T] e) {
- let vec[T] result = std._vec.alloc[T](1 as uint);
+ let vec[T] result = std.Vec.alloc[T](1 as uint);
log "alloced";
result += e;
log "appended";