diff --git a/src/test/codegen/try_identity.rs b/src/test/codegen/try_identity.rs index 71bfc3b44daf6..0363b9dd19eb7 100644 --- a/src/test/codegen/try_identity.rs +++ b/src/test/codegen/try_identity.rs @@ -9,7 +9,7 @@ type R = Result; // This was written to the `?` from `try_trait`, but `try_trait_v2` uses a different structure, // so the relevant desugar is copied inline in order to keep the test testing the same thing. -// FIXME: while this might be useful for `r#try!`, it would be nice to have a MIR optimization +// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR optimization // that picks up the `?` desugaring, as `SimplifyArmIdentity` does not. See #85133 #[no_mangle] pub fn try_identity(x: R) -> R { diff --git a/src/test/mir-opt/simplify-arm.rs b/src/test/mir-opt/simplify-arm.rs index 6a6e39e68f939..e0c7b95a5ec36 100644 --- a/src/test/mir-opt/simplify-arm.rs +++ b/src/test/mir-opt/simplify-arm.rs @@ -30,7 +30,7 @@ fn from_error(e: E) -> Result { // This was written to the `?` from `try_trait`, but `try_trait_v2` uses a different structure, // so the relevant desugar is copied inline in order to keep the test testing the same thing. -// FIXME: while this might be useful for `r#try!`, it would be nice to have a MIR optimization +// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR optimization // that picks up the `?` desugaring, as `SimplifyArmIdentity` does not. See #85133 fn id_try(r: Result) -> Result { let x = match into_result(r) { diff --git a/src/test/mir-opt/simplify_try.rs b/src/test/mir-opt/simplify_try.rs index b91a7bfe68fa6..46c239ebe323a 100644 --- a/src/test/mir-opt/simplify_try.rs +++ b/src/test/mir-opt/simplify_try.rs @@ -15,7 +15,7 @@ fn from_error(e: E) -> Result { // This was written to the `?` from `try_trait`, but `try_trait_v2` uses a different structure, // so the relevant desugar is copied inline in order to keep the test testing the same thing. -// FIXME: while this might be useful for `r#try!`, it would be nice to have a MIR optimization +// FIXME(#85133): while this might be useful for `r#try!`, it would be nice to have a MIR optimization // that picks up the `?` desugaring, as `SimplifyArmIdentity` does not. See #85133 fn try_identity(x: Result) -> Result { let y = match into_result(x) {