Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
ignore_without_reason.rs
blob: 53ac34c27248e0c44bad9416fdc993b4570efbd1 [
file
] [
log
] [
blame
]
#![
warn
(
clippy
::
ignore_without_reason
)]
fn
main
()
{}
#[
test
]
fn
unignored_test
()
{}
#[
test
]
#[
ignore
=
"Some good reason"
]
fn
ignored_with_reason
()
{}
#[
test
]
#[
ignore
]
//~ ignore_without_reason
fn
ignored_without_reason
()
{}