We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08adbc0 commit 3537016Copy full SHA for 3537016
text/2972-constrained-naked.md
@@ -32,7 +32,7 @@ A naked function is identified by the `#[naked]` attribute and:
32
In exchange for the above constraints, the compiler commits to:
33
1. produce a clear error if any of the above requirements are violated.
34
1. produce a clear warning if any of the above suggestions are not heeded.
35
-1. disable the unused argument lint for the function.
+1. disable the unused argument lint for the function (implicit `#[allow(unused_variables)]`).
36
1. never inline the function (implicit `#[inline(never)]`).
37
1. emit no additional instructions to the function body before the `asm!()` statement.
38
0 commit comments