@@ -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 ( ) ,
@@ -869,6 +870,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
869
870
root_id : item. id ,
870
871
parent_scope : self . parent_scope ,
871
872
imported_module : Cell :: new ( module) ,
873
+ indeterminate : Cell :: new ( true ) ,
872
874
has_attributes : !item. attrs . is_empty ( ) ,
873
875
use_span_with_attributes : item. span_with_attributes ( ) ,
874
876
use_span : item. span ,
@@ -1070,6 +1072,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1070
1072
root_id : item. id ,
1071
1073
parent_scope : this. parent_scope ,
1072
1074
imported_module : Cell :: new ( Some ( ModuleOrUniformRoot :: Module ( module) ) ) ,
1075
+ indeterminate : Cell :: new ( false ) ,
1073
1076
use_span_with_attributes : item. span_with_attributes ( ) ,
1074
1077
has_attributes : !item. attrs . is_empty ( ) ,
1075
1078
use_span : item. span ,
@@ -1234,6 +1237,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1234
1237
root_id : item. id ,
1235
1238
parent_scope : self . parent_scope ,
1236
1239
imported_module : Cell :: new ( None ) ,
1240
+ indeterminate : Cell :: new ( true ) ,
1237
1241
has_attributes : false ,
1238
1242
use_span_with_attributes : span,
1239
1243
use_span : span,
0 commit comments