diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-10-24 15:48:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-24 15:48:42 +0200 |
| commit | 87822b27ee496dd0f5832a437f1e51da66bfc09a (patch) | |
| tree | 035cf60d29b7c04255c2fa92866dea033691a2dc /compiler/rustc_incremental/src/lib.rs | |
| parent | bdcb52851231dc14bc6a7915dc62528cae7b8137 (diff) | |
| parent | 22e17989751427625f6187a0b7ec27d621ce8164 (diff) | |
| download | rust-87822b27ee496dd0f5832a437f1e51da66bfc09a.tar.gz rust-87822b27ee496dd0f5832a437f1e51da66bfc09a.zip | |
Rollup merge of #89558 - lcnr:query-stable-lint, r=estebank
Add rustc lint, warning when iterating over hashmaps r? rust-lang/wg-incr-comp
Diffstat (limited to 'compiler/rustc_incremental/src/lib.rs')
| -rw-r--r-- | compiler/rustc_incremental/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_incremental/src/lib.rs b/compiler/rustc_incremental/src/lib.rs index dd3f8c937f8..0478fb2baa0 100644 --- a/compiler/rustc_incremental/src/lib.rs +++ b/compiler/rustc_incremental/src/lib.rs @@ -5,6 +5,7 @@ #![feature(let_else)] #![feature(nll)] #![recursion_limit = "256"] +#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))] #[macro_use] extern crate rustc_middle; |
