Sign in
rust
/
rust-clippy
/
9eb85122558fd7c3a8909939f9cbe4d0f15d73f3
/
.
/
tests
/
ui
/
must_use_unit_unfixable.rs
blob: 0dba7996bac334e5dd9b9c58634bfed7aa8d172c [
file
] [
log
] [
blame
]
//@no-rustfix
#[
cfg_attr
(
all
(),
must_use
,
deprecated
)]
fn
issue_12320
()
{}
//~^ must_use_unit
#[
cfg_attr
(
all
(),
deprecated
,
doc
=
"foo"
,
must_use
)]
fn
issue_12320_2
()
{}
//~^ must_use_unit
fn
main
()
{}