about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2024-03-14 16:28:14 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2024-04-08 15:08:06 +0000
commitcd5ca3c7625b2f6ce13a8fd6cda3d656ff5e079a (patch)
tree98dda85d2346b2ac8afe62e79f8f65c40d03ee2a
parentcd9453c6377e019a868c4553e0d7bebae1bb24b7 (diff)
downloadrust-cd5ca3c7625b2f6ce13a8fd6cda3d656ff5e079a.tar.gz
rust-cd5ca3c7625b2f6ce13a8fd6cda3d656ff5e079a.zip
Add a FIXME for something that requires touching too much code for this PR
-rw-r--r--compiler/rustc_type_ir/src/canonical.rs1
1 files changed, 1 insertions, 0 deletions
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<I: Interner, V> {
     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,
 }