@@ -533,15 +533,15 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
533
533
let indeterminate_imports = mem:: take ( & mut self . indeterminate_imports ) ;
534
534
535
535
for ( is_indeterminate, import) in determined_imports
536
- . into_iter ( )
536
+ . iter ( )
537
537
. map ( |i| ( false , i) )
538
- . chain ( indeterminate_imports. into_iter ( ) . map ( |i| ( true , i) ) )
538
+ . chain ( indeterminate_imports. iter ( ) . map ( |i| ( true , i) ) )
539
539
{
540
- let unresolved_import_error = self . finalize_import ( import) ;
540
+ let unresolved_import_error = self . finalize_import ( * import) ;
541
541
542
542
// If this import is unresolved then create a dummy import
543
543
// resolution for it so that later resolve stages won't complain.
544
- self . import_dummy_binding ( import, is_indeterminate) ;
544
+ self . import_dummy_binding ( * import, is_indeterminate) ;
545
545
546
546
if let Some ( err) = unresolved_import_error {
547
547
if let ImportKind :: Single { source, ref source_bindings, .. } = import. kind {
@@ -563,27 +563,34 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
563
563
errors = vec ! [ ] ;
564
564
}
565
565
if seen_spans. insert ( err. span ) {
566
- errors. push ( ( import, err) ) ;
566
+ errors. push ( ( * import, err) ) ;
567
567
prev_root_id = import. root_id ;
568
568
}
569
- } else if is_indeterminate {
570
- let path = import_path_to_string (
571
- & import. module_path . iter ( ) . map ( |seg| seg. ident ) . collect :: < Vec < _ > > ( ) ,
572
- & import. kind ,
573
- import. span ,
574
- ) ;
575
- let err = UnresolvedImportError {
576
- span : import. span ,
577
- label : None ,
578
- note : None ,
579
- suggestion : None ,
580
- candidates : None ,
581
- } ;
582
- // FIXME: there should be a better way of doing this than
583
- // formatting this as a string then checking for `::`
584
- if path. contains ( "::" ) {
585
- errors. push ( ( import, err) )
586
- }
569
+ }
570
+ }
571
+
572
+ if !errors. is_empty ( ) {
573
+ self . throw_unresolved_import_error ( errors) ;
574
+ return ;
575
+ }
576
+
577
+ for import in & indeterminate_imports {
578
+ let path = import_path_to_string (
579
+ & import. module_path . iter ( ) . map ( |seg| seg. ident ) . collect :: < Vec < _ > > ( ) ,
580
+ & import. kind ,
581
+ import. span ,
582
+ ) ;
583
+ let err = UnresolvedImportError {
584
+ span : import. span ,
585
+ label : None ,
586
+ note : None ,
587
+ suggestion : None ,
588
+ candidates : None ,
589
+ } ;
590
+ // FIXME: there should be a better way of doing this than
591
+ // formatting this as a string then checking for `::`
592
+ if path. contains ( "::" ) {
593
+ errors. push ( ( * import, err) )
587
594
}
588
595
}
589
596
0 commit comments