@@ -355,6 +355,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
355355 parent_scope : self . parent_scope ,
356356 module_path,
357357 imported_module : Cell :: new ( None ) ,
358+ indeterminate : Cell :: new ( true ) ,
358359 span,
359360 use_span : item. span ,
360361 use_span_with_attributes : item. span_with_attributes ( ) ,
@@ -871,6 +872,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
871872 root_id : item. id ,
872873 parent_scope : self . parent_scope ,
873874 imported_module : Cell :: new ( module) ,
875+ indeterminate : Cell :: new ( false ) ,
874876 has_attributes : !item. attrs . is_empty ( ) ,
875877 use_span_with_attributes : item. span_with_attributes ( ) ,
876878 use_span : item. span ,
@@ -1072,6 +1074,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
10721074 root_id : item. id ,
10731075 parent_scope : this. parent_scope ,
10741076 imported_module : Cell :: new ( Some ( ModuleOrUniformRoot :: Module ( module) ) ) ,
1077+ indeterminate : Cell :: new ( false ) ,
10751078 use_span_with_attributes : item. span_with_attributes ( ) ,
10761079 has_attributes : !item. attrs . is_empty ( ) ,
10771080 use_span : item. span ,
@@ -1236,6 +1239,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
12361239 root_id : item. id ,
12371240 parent_scope : self . parent_scope ,
12381241 imported_module : Cell :: new ( None ) ,
1242+ indeterminate : Cell :: new ( false ) ,
12391243 has_attributes : false ,
12401244 use_span_with_attributes : span,
12411245 use_span : span,
0 commit comments