about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorEric Holk <ericholk@microsoft.com>2022-01-21 11:06:14 -0800
committerEric Holk <ericholk@microsoft.com>2022-01-21 11:06:14 -0800
commitead84d089567eb46eb942ed377a032db921d2e6b (patch)
tree398733f27005d2788fcb1de26fa36f0bba913f6f /compiler
parent2c2deff74a84b8590c7339a22d23585a2089c767 (diff)
downloadrust-ead84d089567eb46eb942ed377a032db921d2e6b.tar.gz
rust-ead84d089567eb46eb942ed377a032db921d2e6b.zip
Add reference to breakage this works around
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_typeck/src/check/generator_interior.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_typeck/src/check/generator_interior.rs b/compiler/rustc_typeck/src/check/generator_interior.rs
index cb6a49bd0c0..c6b92db88ae 100644
--- a/compiler/rustc_typeck/src/check/generator_interior.rs
+++ b/compiler/rustc_typeck/src/check/generator_interior.rs
@@ -23,7 +23,8 @@ use tracing::debug;
 mod drop_ranges;
 
 // FIXME(eholk): This flag is here to give a quick way to disable drop tracking in case we find
-// unexpected breakages while it's still new. It should be removed before too long.
+// unexpected breakages while it's still new. It should be removed before too long. For example,
+// see #93161.
 const ENABLE_DROP_TRACKING: bool = false;
 
 struct InteriorVisitor<'a, 'tcx> {