mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
74 lines
1.3 KiB
Rust
74 lines
1.3 KiB
Rust
#![warn(clippy::partialeq_to_none)]
|
|
#![allow(clippy::eq_op, clippy::needless_if)]
|
|
|
|
struct Foobar;
|
|
|
|
impl PartialEq<Option<()>> for Foobar {
|
|
fn eq(&self, _: &Option<()>) -> bool {
|
|
false
|
|
}
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
fn foo(f: Option<u32>) -> &'static str {
|
|
if f.is_some() { "yay" } else { "nay" }
|
|
}
|
|
|
|
fn foobar() -> Option<()> {
|
|
None
|
|
}
|
|
|
|
fn bar() -> Result<(), ()> {
|
|
Ok(())
|
|
}
|
|
|
|
fn optref() -> &'static &'static Option<()> {
|
|
&&None
|
|
}
|
|
|
|
pub fn macro_expansion() {
|
|
macro_rules! foo {
|
|
() => {
|
|
None::<()>
|
|
};
|
|
}
|
|
|
|
let _ = foobar() == foo!();
|
|
let _ = foo!() == foobar();
|
|
let _ = foo!() == foo!();
|
|
}
|
|
|
|
fn main() {
|
|
let x = Some(0);
|
|
|
|
let _ = x.is_none();
|
|
let _ = x.is_some();
|
|
let _ = x.is_none();
|
|
let _ = x.is_some();
|
|
|
|
if foobar().is_none() {}
|
|
|
|
if bar().ok().is_some() {}
|
|
|
|
let _ = Some(1 + 2).is_some();
|
|
|
|
let _ = { Some(0) }.is_none();
|
|
|
|
let _ = {
|
|
/*
|
|
This comment runs long
|
|
*/
|
|
Some(1)
|
|
}.is_some();
|
|
|
|
// Should not trigger, as `Foobar` is not an `Option` and has no `is_none`
|
|
let _ = Foobar == None;
|
|
|
|
let _ = optref().is_none();
|
|
let _ = optref().is_some();
|
|
let _ = optref().is_none();
|
|
let _ = optref().is_some();
|
|
|
|
let x = Box::new(Option::<()>::None);
|
|
let _ = (*x).is_some();
|
|
}
|