We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d7c093 commit f952f17Copy full SHA for f952f17
compiler/rustc_ast_lowering/src/stability.rs
@@ -58,10 +58,13 @@ impl fmt::Display for UnstableAbi {
58
let name = name.trim_matches('"');
59
match self.explain {
60
GateReason::Experimental => {
61
- write!(f, "{name} ABI is experimental and subject to change")
+ write!(f, r#"the extern "{name}" ABI is experimental and subject to change"#)
62
}
63
GateReason::ImplDetail => {
64
- write!(f, "{name} ABI is an implementation detail and perma-unstable")
+ write!(
65
+ f,
66
+ r#"the extern "{name}" ABI is an implementation detail and perma-unstable"#
67
+ )
68
69
70
0 commit comments