Sign in
◑
Theme
rust
/
rust
/
0ae3fd93a3a91460c1957fa38fa9514decbcdf23
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
zero_repeat_side_effects_unfixable.rs
blob: 834b8640cad0521245434b7da25ef397561a12c6 [
file
]
//@no-rustfix
#![
warn
(
clippy
::
zero_repeat_side_effects
)]
fn
issue_14998
()
{
// unnameable types, don't suggest
let
_data
=
[||
3i32
;
0
];
//~^ zero_repeat_side_effects
}