2015-08-14 12:26:57 +00:00
|
|
|
#![feature(plugin)]
|
2015-05-21 12:51:43 +00:00
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
#[deny(cmp_owned)]
|
|
|
|
fn main() {
|
2015-08-11 18:22:20 +00:00
|
|
|
let x = "oh";
|
|
|
|
|
|
|
|
#[allow(str_to_string)]
|
|
|
|
fn with_to_string(x : &str) {
|
2015-10-12 22:46:05 +00:00
|
|
|
x != "foo".to_string();
|
|
|
|
//~^ ERROR this creates an owned instance just for comparison. Consider using `x != "foo"` to compare without allocation
|
|
|
|
|
|
|
|
"foo".to_string() != x;
|
|
|
|
//~^ ERROR this creates an owned instance just for comparison. Consider using `"foo" != x` to compare without allocation
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
|
|
|
with_to_string(x);
|
|
|
|
|
|
|
|
x != "foo".to_owned(); //~ERROR this creates an owned instance
|
|
|
|
|
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
|
|
|
|
|
|
|
x != String::from("foo"); //~ERROR this creates an owned instance
|
2015-05-21 12:51:43 +00:00
|
|
|
}
|