@@ -355,6 +355,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
355
355
parent_scope : self . parent_scope ,
356
356
module_path,
357
357
imported_module : Cell :: new ( None ) ,
358
+ indeterminate : Cell :: new ( true ) ,
358
359
span,
359
360
use_span : item. span ,
360
361
use_span_with_attributes : item. span_with_attributes ( ) ,
@@ -871,6 +872,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
871
872
root_id : item. id ,
872
873
parent_scope : self . parent_scope ,
873
874
imported_module : Cell :: new ( module) ,
875
+ indeterminate : Cell :: new ( false ) ,
874
876
has_attributes : !item. attrs . is_empty ( ) ,
875
877
use_span_with_attributes : item. span_with_attributes ( ) ,
876
878
use_span : item. span ,
@@ -1072,6 +1074,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1072
1074
root_id : item. id ,
1073
1075
parent_scope : this. parent_scope ,
1074
1076
imported_module : Cell :: new ( Some ( ModuleOrUniformRoot :: Module ( module) ) ) ,
1077
+ indeterminate : Cell :: new ( false ) ,
1075
1078
use_span_with_attributes : item. span_with_attributes ( ) ,
1076
1079
has_attributes : !item. attrs . is_empty ( ) ,
1077
1080
use_span : item. span ,
@@ -1236,6 +1239,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1236
1239
root_id : item. id ,
1237
1240
parent_scope : self . parent_scope ,
1238
1241
imported_module : Cell :: new ( None ) ,
1242
+ indeterminate : Cell :: new ( false ) ,
1239
1243
has_attributes : false ,
1240
1244
use_span_with_attributes : span,
1241
1245
use_span : span,
0 commit comments