Skip to content

Commit ea92090

Browse files
authored
Rollup merge of #109909 - clubby789:import-tool-mod, r=petrochenkov
Deny `use`ing tool paths Fixes #109853 Fixes #109147
2 parents 2e486be + ebde2ab commit ea92090

File tree

5 files changed

+37
-11
lines changed

5 files changed

+37
-11
lines changed

compiler/rustc_resolve/messages.ftl

+4
Original file line numberDiff line numberDiff line change
@@ -207,5 +207,9 @@ resolve_expected_found =
207207
resolve_indeterminate =
208208
cannot determine resolution for the visibility
209209
210+
resolve_tool_module_imported =
211+
cannot use a tool module through an import
212+
.note = the tool module imported here
213+
210214
resolve_module_only =
211215
visibility must resolve to a module

compiler/rustc_resolve/src/errors.rs

+9
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,15 @@ pub(crate) struct ExpectedFound {
469469
#[diag(resolve_indeterminate, code = "E0578")]
470470
pub(crate) struct Indeterminate(#[primary_span] pub(crate) Span);
471471

472+
#[derive(Diagnostic)]
473+
#[diag(resolve_tool_module_imported)]
474+
pub(crate) struct ToolModuleImported {
475+
#[primary_span]
476+
pub(crate) span: Span,
477+
#[note]
478+
pub(crate) import: Span,
479+
}
480+
472481
#[derive(Diagnostic)]
473482
#[diag(resolve_module_only)]
474483
pub(crate) struct ModuleOnly(#[primary_span] pub(crate) Span);

compiler/rustc_resolve/src/ident.rs

+7-11
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use crate::late::{
1717
ConstantHasGenerics, ConstantItemKind, HasGenericParams, PathSource, Rib, RibKind,
1818
};
1919
use crate::macros::{sub_namespace_match, MacroRulesScope};
20-
use crate::{AmbiguityError, AmbiguityErrorMisc, AmbiguityKind, Determinacy, Finalize};
20+
use crate::{errors, AmbiguityError, AmbiguityErrorMisc, AmbiguityKind, Determinacy, Finalize};
2121
use crate::{Import, ImportKind, LexicalScopeBinding, Module, ModuleKind, ModuleOrUniformRoot};
2222
use crate::{NameBinding, NameBindingKind, ParentScope, PathResult, PrivacyError, Res};
2323
use crate::{ResolutionError, Resolver, Scope, ScopeSet, Segment, ToNameBinding, Weak};
@@ -1364,7 +1364,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
13641364
}
13651365
};
13661366

1367-
let is_last = i == path.len() - 1;
1367+
let is_last = i + 1 == path.len();
13681368
let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
13691369
let name = ident.name;
13701370

@@ -1501,16 +1501,12 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
15011501
if let Some(next_module) = binding.module() {
15021502
module = Some(ModuleOrUniformRoot::Module(next_module));
15031503
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() {
15051505
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+
});
15141510
}
15151511
let res = Res::NonMacroAttr(NonMacroAttrKind::Tool);
15161512
return PathResult::NonModule(PartialRes::new(res));

tests/ui/resolve/tool-import.rs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// edition: 2018
2+
3+
use clippy::time::Instant;
4+
//~^ `clippy` is a tool module
5+
6+
fn main() {
7+
Instant::now();
8+
}

tests/ui/resolve/tool-import.stderr

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
error[E0433]: failed to resolve: `clippy` is a tool module, not a module
2+
--> $DIR/tool-import.rs:3:5
3+
|
4+
LL | use clippy::time::Instant;
5+
| ^^^^^^ `clippy` is a tool module, not a module
6+
7+
error: aborting due to previous error
8+
9+
For more information about this error, try `rustc --explain E0433`.

0 commit comments

Comments
 (0)