rust/tests/compile-fail/cmp_owned.rs

27 lines
776 B
Rust
Raw Normal View History

#![feature(plugin)]
2015-05-21 14:51:43 +02:00
#![plugin(clippy)]
#[deny(cmp_owned)]
fn main() {
let x = "oh";
#[allow(str_to_string)]
fn with_to_string(x : &str) {
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
}
with_to_string(x);
x != "foo".to_owned(); //~ERROR this creates an owned instance
// removed String::from_str(..), as it has finally been removed in 1.4.0
// as of 2015-08-14
x != String::from("foo"); //~ERROR this creates an owned instance
2016-01-18 15:35:50 +01:00
42.to_string() == "42";
2015-05-21 14:51:43 +02:00
}