Skip to content

Commit b63c4ab

Browse files
committed
Auto merge of #113099 - bvanjoi:fix-112713-2, r=petrochenkov
fix(resolve): update the ambiguity glob binding as warning recursively Fixes #47525 Fixes #56593, but `issue-56593-2.rs` is not fixed to ensure backward compatibility. Fixes #98467 Fixes #105235 Fixes #112713 This PR had added a field called `warn_ambiguous` in `NameBinding` which is only for back compatibly reason and used for lint. More details: rust-lang/rust#112743 r? `@petrochenkov`
2 parents 3f14c47 + ec0de5b commit b63c4ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,8 @@ pub mod primitive;
399399
missing_debug_implementations,
400400
dead_code,
401401
unused_imports,
402-
unsafe_op_in_unsafe_fn
402+
unsafe_op_in_unsafe_fn,
403+
ambiguous_glob_reexports
403404
)]
404405
#[allow(rustdoc::bare_urls)]
405406
// FIXME: This annotation should be moved into rust-lang/stdarch after clashing_extern_declarations is

0 commit comments

Comments
 (0)