rust/tests/ui/cmp_owned.rs

26 lines
443 B
Rust
Raw Normal View History

#![feature(plugin)]
2015-05-21 20:51:43 +08:00
#![plugin(clippy)]
#[deny(cmp_owned)]
#[allow(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();
// removed String::from_str(..), as it has finally been removed in 1.4.0
// as of 2015-08-14
2017-02-08 21:58:07 +08:00
x != String::from("foo");
2016-01-18 22:35:50 +08:00
42.to_string() == "42";
2015-05-21 20:51:43 +08:00
}