Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lint
/
test-allow-dead-extern-static-no-warning.rs
blob: 12d92ad2ec687ad6a560c532e9d18da646123fcb [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ compile-flags: --test
#![
deny
(
dead_code
)]
extern
"C"
{
#[
allow
(
dead_code
)]
static
Qt
:
u64
;
}
fn
main
()
{}