diff options
| author | Bastian Kauschke <bastian_kauschke@hotmail.de> | 2020-11-22 13:57:11 +0100 |
|---|---|---|
| committer | Bastian Kauschke <bastian_kauschke@hotmail.de> | 2021-01-16 19:27:42 +0100 |
| commit | 15f0921d0c0d95c009bee7d9cd9921306b78615c (patch) | |
| tree | c0631ec0f0c48ade42fbb04694607680b9ebf0f5 /compiler/rustc_middle/src/query | |
| parent | 63a83c5f55801b17b77adf690db397d17c706c48 (diff) | |
| download | rust-15f0921d0c0d95c009bee7d9cd9921306b78615c.tar.gz rust-15f0921d0c0d95c009bee7d9cd9921306b78615c.zip | |
correctly deal with late-bound lifetimes in anon consts
Diffstat (limited to 'compiler/rustc_middle/src/query')
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index 9770e67f2d2..0a9f740d53a 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -1316,7 +1316,7 @@ rustc_queries! { desc { "looking up a named region" } } query is_late_bound_map(_: LocalDefId) -> - Option<&'tcx FxHashSet<ItemLocalId>> { + Option<(LocalDefId, &'tcx FxHashSet<ItemLocalId>)> { desc { "testing if a region is late bound" } } query object_lifetime_defaults_map(_: LocalDefId) |
