Skip to content

Commit 36b142f

Browse files
authored
Rollup merge of #87028 - aDotInTheVoid:patch-1, r=petrochenkov
Fix type: `'satic` -> `'static` Pointed out on discord: https://discord.com/channels/273534239310479360/490356824420122645/863434443170250793 ~~The fact that this compiles is probably a bug.~~ Nope it's `#![feature(in_band_lifetimes)]` (Thanks to [floppy](https://discord.com/channels/273534239310479360/490356824420122645/863437381671059486) ~~[The docs](https://doc.rust-lang.org/stable/nightly-rustc/rustc_mir/transform/inline/struct.Inliner.html#method.check_codegen_attributes) seem to indicate rust thinks this function is generic over the lifetime `'satic`~~ This is because of `in_band_lifetimes`
2 parents ad2a0fc + 293fa8f commit 36b142f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_mir/src/transform/inline.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ impl Inliner<'tcx> {
284284
&self,
285285
callsite: &CallSite<'tcx>,
286286
callee_attrs: &CodegenFnAttrs,
287-
) -> Result<(), &'satic str> {
287+
) -> Result<(), &'static str> {
288288
if let InlineAttr::Never = callee_attrs.inline {
289289
return Err("never inline hint");
290290
}

0 commit comments

Comments
 (0)