File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3787,6 +3787,7 @@ dependencies = [
3787
3787
" rustc_hir" ,
3788
3788
" rustc_index" ,
3789
3789
" rustc_parse" ,
3790
+ " rustc_session" ,
3790
3791
" rustc_span" ,
3791
3792
" rustc_target" ,
3792
3793
" syntax" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ rustc_feature = { path = "../librustc_feature" }
17
17
rustc_hir = { path = " ../librustc_hir" }
18
18
rustc_index = { path = " ../librustc_index" }
19
19
rustc_parse = { path = " ../librustc_parse" }
20
+ rustc_session = { path = " ../librustc_session" }
20
21
rustc_target = { path = " ../librustc_target" }
21
22
syntax = { path = " ../libsyntax" }
22
23
rustc_span = { path = " ../librustc_span" }
Original file line number Diff line number Diff line change 7
7
// or type checking or some other kind of complex analysis.
8
8
9
9
use rustc:: lint;
10
- use rustc:: session:: Session ;
11
10
use rustc_data_structures:: fx:: FxHashMap ;
12
11
use rustc_errors:: { struct_span_err, Applicability , FatalError } ;
13
12
use rustc_parse:: validate_attr;
13
+ use rustc_session:: Session ;
14
14
use rustc_span:: source_map:: Spanned ;
15
15
use rustc_span:: symbol:: { kw, sym} ;
16
16
use rustc_span:: Span ;
You can’t perform that action at this time.
0 commit comments