diff options
| author | Michael Goulet <michael@errs.io> | 2024-10-03 00:44:14 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-10-31 01:35:14 +0000 |
| commit | c1457798db03ffb7f207eaf208d8d4d77ba01563 (patch) | |
| tree | f971a769db7432ffdc4a0628c5481518e97f18eb /compiler/rustc_middle/src/ty | |
| parent | e093b82a41906c8c228643314e2f799568b37ee9 (diff) | |
| download | rust-c1457798db03ffb7f207eaf208d8d4d77ba01563.tar.gz rust-c1457798db03ffb7f207eaf208d8d4d77ba01563.zip | |
Try to point out when edition 2024 lifetime capture rules cause borrowck issues
Diffstat (limited to 'compiler/rustc_middle/src/ty')
| -rw-r--r-- | compiler/rustc_middle/src/ty/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/ty/context.rs b/compiler/rustc_middle/src/ty/context.rs index 9f1ffabc4f8..9abad6d1a68 100644 --- a/compiler/rustc_middle/src/ty/context.rs +++ b/compiler/rustc_middle/src/ty/context.rs @@ -55,7 +55,7 @@ use rustc_type_ir::fold::TypeFoldable; use rustc_type_ir::lang_items::TraitSolverLangItem; pub use rustc_type_ir::lift::Lift; use rustc_type_ir::{CollectAndApply, Interner, TypeFlags, WithCachedTypeInfo, search_graph}; -use tracing::{debug, trace}; +use tracing::{debug, instrument}; use crate::arena::Arena; use crate::dep_graph::{DepGraph, DepKindStruct}; |
