2015-08-14 12:26:57 +00:00
|
|
|
#![feature(plugin)]
|
2015-05-21 12:51:43 +00:00
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
#[deny(cmp_owned)]
|
2016-05-13 14:43:47 +00:00
|
|
|
#[allow(unnecessary_operation)]
|
2015-05-21 12:51:43 +00:00
|
|
|
fn main() {
|
2015-08-11 18:22:20 +00:00
|
|
|
fn with_to_string(x : &str) {
|
2015-10-12 22:46:05 +00:00
|
|
|
x != "foo".to_string();
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2015-10-12 22:46:05 +00:00
|
|
|
|
|
|
|
"foo".to_string() != x;
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
2016-01-24 09:16:56 +00:00
|
|
|
|
|
|
|
let x = "oh";
|
|
|
|
|
2015-08-11 18:22:20 +00:00
|
|
|
with_to_string(x);
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
x != "foo".to_owned();
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2015-08-14 12:26:57 +00:00
|
|
|
// removed String::from_str(..), as it has finally been removed in 1.4.0
|
|
|
|
// as of 2015-08-14
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
x != String::from("foo");
|
2016-01-18 14:35:50 +00:00
|
|
|
|
|
|
|
42.to_string() == "42";
|
2015-05-21 12:51:43 +00:00
|
|
|
}
|