Skip to content

Commit d8c738a

Browse files
committed
Auto merge of rust-lang#113099 - bvanjoi:fix-112713-2, r=petrochenkov
fix(resolve): update the ambiguity glob binding as warning recursively Fixes rust-lang#47525 Fixes rust-lang#56593, but `issue-56593-2.rs` is not fixed to ensure backward compatibility. Fixes rust-lang#98467 Fixes rust-lang#105235 Fixes rust-lang#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#112743 r? `@petrochenkov`
2 parents 3a4612d + d5d4b97 commit d8c738a

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)