aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/user.rs
diff options
context:
space:
mode:
authorMarijn Haverbeke <[email protected]>2011-05-12 17:24:54 +0200
committerMarijn Haverbeke <[email protected]>2011-05-12 21:30:44 +0200
commit3816e57fd2a8ab19e4ac6d4b3ddd5b49d5973ff2 (patch)
tree508982ed2f789aedd89eebd529343d9dc88b8e01 /src/test/run-pass/user.rs
parentTransitional change to make extfmt output lowercase module name (diff)
downloadrust-3816e57fd2a8ab19e4ac6d4b3ddd5b49d5973ff2.tar.xz
rust-3816e57fd2a8ab19e4ac6d4b3ddd5b49d5973ff2.zip
Downcase std modules again, move to :: for module dereferencing
This should be a snapshot transition.
Diffstat (limited to 'src/test/run-pass/user.rs')
-rw-r--r--src/test/run-pass/user.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/user.rs b/src/test/run-pass/user.rs
index 877c416b..3281f448 100644
--- a/src/test/run-pass/user.rs
+++ b/src/test/run-pass/user.rs
@@ -8,10 +8,10 @@ use std (name = "std",
uuid = _, ver = _);
fn main() {
- auto s = std.Str.alloc(10 as uint);
+ auto s = std::str.alloc(10 as uint);
s += "hello ";
log s;
s += "there";
log s;
- auto z = std.Vec.alloc[int](10 as uint);
+ auto z = std::vec.alloc[int](10 as uint);
}