about summary refs log tree commit diff
path: root/compiler/rustc_passes
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-11-01 18:49:08 +0000
committerMichael Goulet <michael@errs.io>2024-11-03 18:59:41 +0000
commit6b96103bf3b0746e443f9bb86b532be2c536113a (patch)
tree5fc89f65d57999f75879df2ea0268c05aece17d9 /compiler/rustc_passes
parent0b5ddf30ebb097d0c46975cfb2a9ee9b04805af2 (diff)
downloadrust-6b96103bf3b0746e443f9bb86b532be2c536113a.tar.gz
rust-6b96103bf3b0746e443f9bb86b532be2c536113a.zip
Rename the FIXMEs, remove a few that dont matter anymore
Diffstat (limited to 'compiler/rustc_passes')
-rw-r--r--compiler/rustc_passes/src/stability.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_passes/src/stability.rs b/compiler/rustc_passes/src/stability.rs
index f69cc74fba2..737e163efce 100644
--- a/compiler/rustc_passes/src/stability.rs
+++ b/compiler/rustc_passes/src/stability.rs
@@ -217,7 +217,7 @@ impl<'a, 'tcx> Annotator<'a, 'tcx> {
 
         // `impl const Trait for Type` items forward their const stability to their
         // immediate children.
-        // FIXME(effects): how is this supposed to interact with `#[rustc_const_stable_indirect]`?
+        // FIXME(const_trait_impl): how is this supposed to interact with `#[rustc_const_stable_indirect]`?
         // Currently, once that is set, we do not inherit anything from the parent any more.
         if const_stab.is_none() {
             debug!("annotate: const_stab not found, parent = {:?}", self.parent_const_stab);