@@ -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 ( ) ,
@@ -869,6 +870,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
869870 root_id : item. id ,
870871 parent_scope : self . parent_scope ,
871872 imported_module : Cell :: new ( module) ,
873+ indeterminate : Cell :: new ( false ) ,
872874 has_attributes : !item. attrs . is_empty ( ) ,
873875 use_span_with_attributes : item. span_with_attributes ( ) ,
874876 use_span : item. span ,
@@ -1070,6 +1072,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
10701072 root_id : item. id ,
10711073 parent_scope : this. parent_scope ,
10721074 imported_module : Cell :: new ( Some ( ModuleOrUniformRoot :: Module ( module) ) ) ,
1075+ indeterminate : Cell :: new ( false ) ,
10731076 use_span_with_attributes : item. span_with_attributes ( ) ,
10741077 has_attributes : !item. attrs . is_empty ( ) ,
10751078 use_span : item. span ,
@@ -1234,6 +1237,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
12341237 root_id : item. id ,
12351238 parent_scope : self . parent_scope ,
12361239 imported_module : Cell :: new ( None ) ,
1240+ indeterminate : Cell :: new ( false ) ,
12371241 has_attributes : false ,
12381242 use_span_with_attributes : span,
12391243 use_span : span,
0 commit comments