blob: ece40ed219d4a219243b026c1611844bf05c1ddf (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! Checks that the `dead_code` lint does not consider `#[used]` items unused.
//! Regression test for <https://github.com/rust-lang/rust/issues/41628>.
//@ check-pass
#![deny(dead_code)]
#[used]
static FOO: u32 = 0;
fn main() {}
|