diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2025-03-17 01:34:46 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2025-03-24 23:03:11 +0300 |
| commit | ba4190cf7e919d7cc31c366906ded41874ef0439 (patch) | |
| tree | 33e1f9e95d75ccc394d156e3a76a30e307b99d50 /compiler/rustc_resolve/src/ident.rs | |
| parent | 4510e86a41388733675465a8647d4235f3bf2023 (diff) | |
| download | rust-ba4190cf7e919d7cc31c366906ded41874ef0439.tar.gz rust-ba4190cf7e919d7cc31c366906ded41874ef0439.zip | |
resolve: Avoid some unstable iteration 2
Diffstat (limited to 'compiler/rustc_resolve/src/ident.rs')
| -rw-r--r-- | compiler/rustc_resolve/src/ident.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/ident.rs b/compiler/rustc_resolve/src/ident.rs index 27d63198836..5f0a2a597e9 100644 --- a/compiler/rustc_resolve/src/ident.rs +++ b/compiler/rustc_resolve/src/ident.rs @@ -946,7 +946,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> { // Check if one of single imports can still define the name, // if it can then our result is not determined and can be invalidated. - #[allow(rustc::potential_query_instability)] // FIXME for single_import in &resolution.single_imports { if ignore_import == Some(*single_import) { // This branch handles a cycle in single imports. |
