@@ -17,7 +17,7 @@ use crate::late::{
17
17
ConstantHasGenerics , ConstantItemKind , HasGenericParams , PathSource , Rib , RibKind ,
18
18
} ;
19
19
use crate :: macros:: { sub_namespace_match, MacroRulesScope } ;
20
- use crate :: { AmbiguityError , AmbiguityErrorMisc , AmbiguityKind , Determinacy , Finalize } ;
20
+ use crate :: { errors , AmbiguityError , AmbiguityErrorMisc , AmbiguityKind , Determinacy , Finalize } ;
21
21
use crate :: { Import , ImportKind , LexicalScopeBinding , Module , ModuleKind , ModuleOrUniformRoot } ;
22
22
use crate :: { NameBinding , NameBindingKind , ParentScope , PathResult , PrivacyError , Res } ;
23
23
use crate :: { ResolutionError , Resolver , Scope , ScopeSet , Segment , ToNameBinding , Weak } ;
@@ -1364,7 +1364,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
1364
1364
}
1365
1365
} ;
1366
1366
1367
- let is_last = i == path. len ( ) - 1 ;
1367
+ let is_last = i + 1 == path. len ( ) ;
1368
1368
let ns = if is_last { opt_ns. unwrap_or ( TypeNS ) } else { TypeNS } ;
1369
1369
let name = ident. name ;
1370
1370
@@ -1501,16 +1501,12 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
1501
1501
if let Some ( next_module) = binding. module ( ) {
1502
1502
module = Some ( ModuleOrUniformRoot :: Module ( next_module) ) ;
1503
1503
record_segment_res ( self , res) ;
1504
- } else if res == Res :: ToolMod && i + 1 != path . len ( ) {
1504
+ } else if res == Res :: ToolMod && !is_last && opt_ns . is_some ( ) {
1505
1505
if binding. is_import ( ) {
1506
- self . tcx
1507
- . sess
1508
- . struct_span_err (
1509
- ident. span ,
1510
- "cannot use a tool module through an import" ,
1511
- )
1512
- . span_note ( binding. span , "the tool module imported here" )
1513
- . emit ( ) ;
1506
+ self . tcx . sess . emit_err ( errors:: ToolModuleImported {
1507
+ span : ident. span ,
1508
+ import : binding. span ,
1509
+ } ) ;
1514
1510
}
1515
1511
let res = Res :: NonMacroAttr ( NonMacroAttrKind :: Tool ) ;
1516
1512
return PathResult :: NonModule ( PartialRes :: new ( res) ) ;
0 commit comments