about summary refs log tree commit diff
path: root/src/compiletest
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-06-08 20:12:10 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-09 17:46:53 -0700
commit1635ef2a1958749e7b0cf4e812e1a87cd919027f (patch)
tree15af3b75a8ac11af34f6df1bd46fdba6560a9377 /src/compiletest
parent5eb4d19dc35dc59aaeaf3d53759c9b0341148ef8 (diff)
downloadrust-1635ef2a1958749e7b0cf4e812e1a87cd919027f.tar.gz
rust-1635ef2a1958749e7b0cf4e812e1a87cd919027f.zip
std: Move dynamic_lib from std::unstable to std
This leaves a deprecated reexport in place temporarily.

Closes #1457.
Diffstat (limited to 'src/compiletest')
-rw-r--r--src/compiletest/procsrv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiletest/procsrv.rs b/src/compiletest/procsrv.rs
index a48a9f1be75..8fa34dd6d27 100644
--- a/src/compiletest/procsrv.rs
+++ b/src/compiletest/procsrv.rs
@@ -11,7 +11,7 @@
 use std::os;
 use std::str;
 use std::io::process::{ProcessExit, Command, Process, ProcessOutput};
-use std::unstable::dynamic_lib::DynamicLibrary;
+use std::dynamic_lib::DynamicLibrary;
 
 fn target_env(lib_path: &str, prog: &str) -> Vec<(String, String)> {
     let prog = if cfg!(windows) {prog.slice_to(prog.len() - 4)} else {prog};