rust/tests/ui/cmp_owned.rs

70 lines
1.3 KiB
Rust
Raw Normal View History

2018-10-07 00:18:06 +08:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2018-07-28 23:34:52 +08:00
#![feature(tool_lints)]
2017-09-18 18:47:33 +08:00
2018-07-28 23:34:52 +08:00
#[warn(clippy::cmp_owned)]
#[allow(clippy::unnecessary_operation)]
2015-05-21 20:51:43 +08:00
fn main() {
fn with_to_string(x : &str) {
x != "foo".to_string();
2017-02-08 21:58:07 +08:00
"foo".to_string() != x;
}
2016-01-24 17:16:56 +08:00
let x = "oh";
with_to_string(x);
2017-02-08 21:58:07 +08:00
x != "foo".to_owned();
2017-02-08 21:58:07 +08:00
x != String::from("foo");
2016-01-18 22:35:50 +08:00
42.to_string() == "42";
2017-05-12 00:59:36 +08:00
Foo.to_owned() == Foo;
2018-10-09 10:04:29 +08:00
"abc".chars().filter(|c| c.to_owned() != 'X');
"abc".chars().filter(|c| *c != 'X');
2017-05-12 00:59:36 +08:00
}
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 20:51:43 +08:00
}