File tree 2 files changed +7
-6
lines changed
src/librustc_mir/borrow_check
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,13 @@ mod var_name;
24
24
mod region_name;
25
25
mod outlives_suggestion;
26
26
27
- crate mod conflict_errors;
28
- crate mod move_errors;
29
- crate mod mutability_errors;
30
- crate mod region_errors;
31
- crate mod explain_borrow;
27
+ mod conflict_errors;
28
+ mod move_errors;
29
+ mod mutability_errors;
30
+ mod region_errors;
31
+ mod explain_borrow;
32
32
33
+ crate use mutability_errors:: AccessKind ;
33
34
crate use region_name:: { RegionName , RegionNameSource , RegionErrorNamingCtx } ;
34
35
crate use region_errors:: { ErrorReportingCtx , ErrorConstraintInfo } ;
35
36
crate use outlives_suggestion:: OutlivesSuggestionBuilder ;
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ use self::flows::Flows;
46
46
use self :: location:: LocationTable ;
47
47
use self :: prefixes:: PrefixSet ;
48
48
use self :: MutateMode :: { JustWrite , WriteAndRead } ;
49
- use self :: diagnostics:: mutability_errors :: AccessKind ;
49
+ use self :: diagnostics:: AccessKind ;
50
50
51
51
use self :: path_utils:: * ;
52
52
You can’t perform that action at this time.
0 commit comments