Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
dead-code-tuple-struct-field.rs
blob: 496ce4fb378aec933ca76baac9209e2391e38b3a [
file
] [
log
] [
blame
]
// compile-pass
#![
deny
(
dead_code
)]
const
LEN
:
usize
=
4
;
#[
derive
(
Debug
)]
struct
Wrapper
([
u8
;
LEN
]);
fn
main
()
{
println
!(
"{:?}"
,
Wrapper
([
0
,
1
,
2
,
3
]));
}