rust/tests/ui/cmp_owned/with_suggestion.fixed

73 lines
1.2 KiB
Rust
Raw Normal View History

// run-rustfix
2018-07-28 17:34:52 +02:00
#[warn(clippy::cmp_owned)]
#[allow(clippy::unnecessary_operation, clippy::no_effect, unused_must_use, clippy::eq_op)]
2015-05-21 14:51:43 +02:00
fn main() {
2018-12-09 23:26:16 +01:00
fn with_to_string(x: &str) {
x != "foo";
2017-02-08 14:58:07 +01:00
"foo" != x;
}
2016-01-24 10:16:56 +01:00
let x = "oh";
with_to_string(x);
x != "foo";
x != "foo";
2016-01-18 15:35:50 +01:00
42.to_string() == "42";
2017-05-11 18:59:36 +02:00
Foo == Foo;
2018-10-09 04:04:29 +02:00
"abc".chars().filter(|c| *c != 'X');
"abc".chars().filter(|c| *c != 'X');
2017-05-11 18:59:36 +02:00
}
struct Foo;
impl PartialEq for Foo {
// Allow this here, because it emits the lint
// without a suggestion. This is tested in
// `tests/ui/cmp_owned/without_suggestion.rs`
#[allow(clippy::cmp_owned)]
2017-05-11 18:59:36 +02:00
fn eq(&self, other: &Self) -> bool {
self.to_owned() == *other
}
}
impl ToOwned for Foo {
type Owned = Bar;
fn to_owned(&self) -> Bar {
Bar
}
}
#[derive(PartialEq)]
struct Bar;
impl PartialEq<Foo> for Bar {
fn eq(&self, _: &Foo) -> bool {
true
}
}
impl std::borrow::Borrow<Foo> for Bar {
fn borrow(&self) -> &Foo {
static FOO: Foo = Foo;
&FOO
}
2015-05-21 14:51:43 +02:00
}
#[derive(PartialEq)]
struct Baz;
impl ToOwned for Baz {
type Owned = Baz;
fn to_owned(&self) -> Baz {
Baz
}
}