We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2f10c4 commit c31b4faCopy full SHA for c31b4fa
src/abi.md
@@ -27,9 +27,10 @@ static FOO: u32 = 0;
27
#[allow(dead_code)]
28
static BAR: u32 = 0;
29
30
-// This is kept because it is referenced by a public, reachable function:
+// This is kept because it is publicly reachable:
31
pub static BAZ: u32 = 0;
32
33
+// This is kept because it is referenced by a public, reachable function:
34
static QUUX: u32 = 0;
35
36
pub fn quux() -> &'static u32 {
0 commit comments