about summary refs log tree commit diff
path: root/src/libstd/timer.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-03-02 19:18:37 -0800
committerbors <bors@rust-lang.org>2013-03-02 19:18:37 -0800
commit5655ae46a73723203edcf6a53c87560e0da7aaec (patch)
treea7c5ca21cf001ff1847c16016822a4965f8d7758 /src/libstd/timer.rs
parent826644e8cb37363a4e44561a498e79acfeb77b6a (diff)
parentccec510f392d5017a1da37c6b8327b5201dffd2a (diff)
downloadrust-5655ae46a73723203edcf6a53c87560e0da7aaec.tar.gz
rust-5655ae46a73723203edcf6a53c87560e0da7aaec.zip
auto merge of #5197 : pcwalton/rust/fn-types, r=pcwalton
r? @catamorphism
Diffstat (limited to 'src/libstd/timer.rs')
-rw-r--r--src/libstd/timer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/timer.rs b/src/libstd/timer.rs
index b711825aecf..7bd411315b2 100644
--- a/src/libstd/timer.rs
+++ b/src/libstd/timer.rs
@@ -221,7 +221,7 @@ mod test {
                 let ch = ch.clone();
                 let hl_loop_clone = hl_loop.clone();
                 do task::spawn {
-                    use rand::*;
+                    use core::rand::*;
                     let rng = Rng();
                     for iter::repeat(times) {
                         sleep(&hl_loop_clone, rng.next() as uint % maxms);