2015-08-14 07:26:57 -05:00
|
|
|
#![feature(plugin)]
|
2015-05-21 07:51:43 -05:00
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
#[deny(cmp_owned)]
|
|
|
|
fn main() {
|
2015-08-11 13:22:20 -05:00
|
|
|
let x = "oh";
|
|
|
|
|
|
|
|
#[allow(str_to_string)]
|
|
|
|
fn with_to_string(x : &str) {
|
|
|
|
x != "foo".to_string(); //~ERROR this creates an owned instance
|
|
|
|
}
|
|
|
|
with_to_string(x);
|
|
|
|
|
|
|
|
x != "foo".to_owned(); //~ERROR this creates an owned instance
|
|
|
|
|
2015-08-14 07:26:57 -05:00
|
|
|
// removed String::from_str(..), as it has finally been removed in 1.4.0
|
|
|
|
// as of 2015-08-14
|
2015-08-11 13:22:20 -05:00
|
|
|
|
|
|
|
x != String::from("foo"); //~ERROR this creates an owned instance
|
2015-05-21 07:51:43 -05:00
|
|
|
}
|