File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use std::fs::{read_dir, remove_file};
15
15
use std:: str:: FromStr ;
16
16
use std:: path:: PathBuf ;
17
17
#[ cfg( feature = "rustc" ) ]
18
- use rustc ;
18
+ use rustc_session ;
19
19
20
20
use test:: ColorConfig ;
21
21
use runtest:: dylib_env_var;
@@ -332,7 +332,7 @@ pub use self::config_tempdir::ConfigWithTemp;
332
332
impl Default for Config {
333
333
fn default ( ) -> Config {
334
334
#[ cfg( feature = "rustc" ) ]
335
- let platform = rustc :: session :: config:: host_triple ( ) . to_string ( ) ;
335
+ let platform = rustc_session :: config:: host_triple ( ) . to_string ( ) ;
336
336
337
337
Config {
338
338
compile_lib_path : PathBuf :: from ( "" ) ,
Original file line number Diff line number Diff line change 16
16
#![ deny( unused_imports) ]
17
17
18
18
#[ cfg( feature = "rustc" ) ]
19
- extern crate rustc ;
19
+ extern crate rustc_session ;
20
20
21
21
#[ cfg( unix) ]
22
22
extern crate libc;
You can’t perform that action at this time.
0 commit comments