2015-08-14 14:26:57 +02:00
|
|
|
#![feature(plugin)]
|
2015-05-21 14:51:43 +02:00
|
|
|
#![plugin(clippy)]
|
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
#[warn(cmp_owned)]
|
2016-05-13 16:43:47 +02:00
|
|
|
#[allow(unnecessary_operation)]
|
2015-05-21 14:51:43 +02:00
|
|
|
fn main() {
|
2015-08-11 20:22:20 +02:00
|
|
|
fn with_to_string(x : &str) {
|
2015-10-13 00:46:05 +02:00
|
|
|
x != "foo".to_string();
|
2017-02-08 14:58:07 +01:00
|
|
|
|
2015-10-13 00:46:05 +02:00
|
|
|
"foo".to_string() != x;
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
2016-01-24 10:16:56 +01:00
|
|
|
|
|
|
|
let x = "oh";
|
|
|
|
|
2015-08-11 20:22:20 +02:00
|
|
|
with_to_string(x);
|
|
|
|
|
2017-02-08 14:58:07 +01:00
|
|
|
x != "foo".to_owned();
|
2015-08-11 20:22:20 +02:00
|
|
|
|
2017-02-08 14:58:07 +01:00
|
|
|
x != String::from("foo");
|
2016-01-18 15:35:50 +01:00
|
|
|
|
|
|
|
42.to_string() == "42";
|
2017-05-11 18:59:36 +02:00
|
|
|
|
|
|
|
Foo.to_owned() == Foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl PartialEq for Foo {
|
|
|
|
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
|
|
|
}
|