aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/lib-map.rs
diff options
context:
space:
mode:
authorRoy Frostig <[email protected]>2010-08-04 23:09:25 -0700
committerRoy Frostig <[email protected]>2010-08-04 23:09:33 -0700
commit718c0b5963e6513337e4fee003b34423397c2d14 (patch)
treebfce28f0d0e3b523691c4b536af213330a0f0a96 /src/test/run-pass/lib-map.rs
parentThread argument-types down to internal_check_outer_lval in type.ml, in prepar... (diff)
downloadrust-718c0b5963e6513337e4fee003b34423397c2d14.tar.xz
rust-718c0b5963e6513337e4fee003b34423397c2d14.zip
Add to std._io some formatter/type-specific-writer mechanism. Make a few type-specific buffered writers as wrappers of buf_writer.
Diffstat (limited to 'src/test/run-pass/lib-map.rs')
-rw-r--r--src/test/run-pass/lib-map.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/test/run-pass/lib-map.rs b/src/test/run-pass/lib-map.rs
index 11101c84..058fb237 100644
--- a/src/test/run-pass/lib-map.rs
+++ b/src/test/run-pass/lib-map.rs
@@ -4,13 +4,17 @@ use std;
import std.map;
fn test_simple() {
+ log "*** starting test_simple";
+
fn eq(&uint x, &uint y) -> bool { ret x == y; }
let map.hashfn[uint] hasher = std.util.id[uint];
let map.eqfn[uint] eqer = eq;
let map.hashmap[uint, uint] hm = map.mk_hashmap[uint, uint](hasher, eqer);
+
+ log "*** finished test_simple";
}
fn main() {
test_simple();
-} \ No newline at end of file
+}