mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
169 lines
3.8 KiB
Rust
169 lines
3.8 KiB
Rust
// run-rustfix
|
|
|
|
#![warn(clippy::needless_question_mark)]
|
|
#![allow(
|
|
clippy::needless_return,
|
|
clippy::unnecessary_unwrap,
|
|
clippy::upper_case_acronyms,
|
|
dead_code,
|
|
unused_must_use
|
|
)]
|
|
#![feature(custom_inner_attributes)]
|
|
|
|
struct TO {
|
|
magic: Option<usize>,
|
|
}
|
|
|
|
struct TR {
|
|
magic: Result<usize, bool>,
|
|
}
|
|
|
|
fn simple_option_bad1(to: TO) -> Option<usize> {
|
|
// return as a statement
|
|
return to.magic;
|
|
}
|
|
|
|
// formatting will add a semi-colon, which would make
|
|
// this identical to the test case above
|
|
#[rustfmt::skip]
|
|
fn simple_option_bad2(to: TO) -> Option<usize> {
|
|
// return as an expression
|
|
return to.magic
|
|
}
|
|
|
|
fn simple_option_bad3(to: TO) -> Option<usize> {
|
|
// block value "return"
|
|
to.magic
|
|
}
|
|
|
|
fn simple_option_bad4(to: Option<TO>) -> Option<usize> {
|
|
// single line closure
|
|
to.and_then(|t| t.magic)
|
|
}
|
|
|
|
// formatting this will remove the block brackets, making
|
|
// this test identical to the one above
|
|
#[rustfmt::skip]
|
|
fn simple_option_bad5(to: Option<TO>) -> Option<usize> {
|
|
// closure with body
|
|
to.and_then(|t| {
|
|
t.magic
|
|
})
|
|
}
|
|
|
|
fn simple_result_bad1(tr: TR) -> Result<usize, bool> {
|
|
return tr.magic;
|
|
}
|
|
|
|
// formatting will add a semi-colon, which would make
|
|
// this identical to the test case above
|
|
#[rustfmt::skip]
|
|
fn simple_result_bad2(tr: TR) -> Result<usize, bool> {
|
|
return tr.magic
|
|
}
|
|
|
|
fn simple_result_bad3(tr: TR) -> Result<usize, bool> {
|
|
tr.magic
|
|
}
|
|
|
|
fn simple_result_bad4(tr: Result<TR, bool>) -> Result<usize, bool> {
|
|
tr.and_then(|t| t.magic)
|
|
}
|
|
|
|
// formatting this will remove the block brackets, making
|
|
// this test identical to the one above
|
|
#[rustfmt::skip]
|
|
fn simple_result_bad5(tr: Result<TR, bool>) -> Result<usize, bool> {
|
|
tr.and_then(|t| {
|
|
t.magic
|
|
})
|
|
}
|
|
|
|
fn also_bad(tr: Result<TR, bool>) -> Result<usize, bool> {
|
|
if tr.is_ok() {
|
|
let t = tr.unwrap();
|
|
return t.magic;
|
|
}
|
|
Err(false)
|
|
}
|
|
|
|
fn false_positive_test<U, T>(x: Result<(), U>) -> Result<(), T>
|
|
where
|
|
T: From<U>,
|
|
{
|
|
Ok(x?)
|
|
}
|
|
|
|
fn main() {}
|
|
|
|
mod question_mark_none {
|
|
#![clippy::msrv = "1.12.0"]
|
|
fn needless_question_mark_option() -> Option<usize> {
|
|
struct TO {
|
|
magic: Option<usize>,
|
|
}
|
|
let to = TO { magic: None };
|
|
Some(to.magic?) // should not be triggered
|
|
}
|
|
|
|
fn needless_question_mark_result() -> Result<usize, bool> {
|
|
struct TO {
|
|
magic: Result<usize, bool>,
|
|
}
|
|
let to = TO { magic: Ok(1_usize) };
|
|
Ok(to.magic?) // should not be triggered
|
|
}
|
|
|
|
fn main() {
|
|
needless_question_mark_option();
|
|
needless_question_mark_result();
|
|
}
|
|
}
|
|
|
|
mod question_mark_result {
|
|
#![clippy::msrv = "1.21.0"]
|
|
fn needless_question_mark_option() -> Option<usize> {
|
|
struct TO {
|
|
magic: Option<usize>,
|
|
}
|
|
let to = TO { magic: None };
|
|
Some(to.magic?) // should not be triggered
|
|
}
|
|
|
|
fn needless_question_mark_result() -> Result<usize, bool> {
|
|
struct TO {
|
|
magic: Result<usize, bool>,
|
|
}
|
|
let to = TO { magic: Ok(1_usize) };
|
|
to.magic // should be triggered
|
|
}
|
|
|
|
fn main() {
|
|
needless_question_mark_option();
|
|
needless_question_mark_result();
|
|
}
|
|
}
|
|
|
|
mod question_mark_both {
|
|
#![clippy::msrv = "1.22.0"]
|
|
fn needless_question_mark_option() -> Option<usize> {
|
|
struct TO {
|
|
magic: Option<usize>,
|
|
}
|
|
let to = TO { magic: None };
|
|
to.magic // should be triggered
|
|
}
|
|
|
|
fn needless_question_mark_result() -> Result<usize, bool> {
|
|
struct TO {
|
|
magic: Result<usize, bool>,
|
|
}
|
|
let to = TO { magic: Ok(1_usize) };
|
|
to.magic // should be triggered
|
|
}
|
|
|
|
fn main() {
|
|
needless_question_mark_option();
|
|
needless_question_mark_result();
|
|
}
|
|
}
|