From ead84d089567eb46eb942ed377a032db921d2e6b Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Fri, 21 Jan 2022 11:06:14 -0800 Subject: [PATCH] Add reference to breakage this works around --- compiler/rustc_typeck/src/check/generator_interior.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/rustc_typeck/src/check/generator_interior.rs b/compiler/rustc_typeck/src/check/generator_interior.rs index cb6a49bd0c045..c6b92db88ae8a 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> {