diff options
Diffstat (limited to 'src/test/run-pass/task-comm-13.rs')
| -rw-r--r-- | src/test/run-pass/task-comm-13.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/task-comm-13.rs b/src/test/run-pass/task-comm-13.rs index 31da1168bf7..bb92ef38728 100644 --- a/src/test/run-pass/task-comm-13.rs +++ b/src/test/run-pass/task-comm-13.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use std::comm::{channel, Sender}; +use std::sync::mpsc::{channel, Sender}; use std::task; fn start(tx: &Sender<int>, start: int, number_of_messages: int) { |
