Skip to content

Commit 4fdf43f

Browse files
committed
special_module_name: ignore inline modules
1 parent f479289 commit 4fdf43f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

compiler/rustc_lint/src/builtin.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -3299,7 +3299,11 @@ declare_lint_pass!(SpecialModuleName => [SPECIAL_MODULE_NAME]);
32993299
impl EarlyLintPass for SpecialModuleName {
33003300
fn check_crate(&mut self, cx: &EarlyContext<'_>, krate: &ast::Crate) {
33013301
for item in &krate.items {
3302-
if let ast::ItemKind::Mod(..) = item.kind {
3302+
if let ast::ItemKind::Mod(
3303+
_,
3304+
ast::ModKind::Unloaded | ast::ModKind::Loaded(_, ast::Inline::No, _),
3305+
) = item.kind
3306+
{
33033307
if item.attrs.iter().any(|a| a.has_name(sym::path)) {
33043308
continue;
33053309
}

0 commit comments

Comments
 (0)