Sign in
rust
/
rust-clippy
/
c362efa42048d632c968a84002ca29396f0eb115
/
.
/
tests
/
ui
/
erasing_op.rs
blob: e5143146f2666b0bff6c5f5e8b852f4009936bcc [
file
] [
log
] [
blame
]
#[
allow
(
no_effect
)]
#[
warn
(
erasing_op
)]
fn
main
()
{
let
x
:
u8
=
0
;
x
*
0
;
0
&
x
;
0
/
x
;
}