From cd5ca3c7625b2f6ce13a8fd6cda3d656ff5e079a Mon Sep 17 00:00:00 2001 From: Oli Scherer Date: Thu, 14 Mar 2024 16:28:14 +0000 Subject: [PATCH] Add a FIXME for something that requires touching too much code for this PR --- compiler/rustc_type_ir/src/canonical.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/rustc_type_ir/src/canonical.rs b/compiler/rustc_type_ir/src/canonical.rs index bdd43af51ad..06a5051956a 100644 --- a/compiler/rustc_type_ir/src/canonical.rs +++ b/compiler/rustc_type_ir/src/canonical.rs @@ -16,6 +16,7 @@ use crate::{Interner, PlaceholderLike, UniverseIndex}; pub struct Canonical { pub value: V, pub max_universe: UniverseIndex, + // FIXME(lcnr, oli-obk): try moving this into the query inputs instead pub defining_opaque_types: I::DefiningOpaqueTypes, pub variables: I::CanonicalVars, }