gccrs
gccrs copied to clipboard
Unused check for static items
Summary
The current unused var pass does not check static items.
Reproducer
I tried this code:
static TEST: usize = 1;
fn main() {}