We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I tried this code:
pub async fn foo() { const A: usize = 1; }
I expected to see the warning:
warning: constant A is never used
A
Instead no warning was reported by the compiler.
Observed in nightly, 1.67. Seems like the warning was shown in 1.63 and stopped showing in 1.64.