Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
attributes
/
used
/
used-not-dead-code-lint.rs
blob: ece40ed219d4a219243b026c1611844bf05c1ddf [
file
] [
log
] [
blame
]
//! 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
()
{}