rust/tests/compile-fail/cmp_owned.rs
2015-05-21 14:51:43 +02:00

17 lines
387 B
Rust

#![feature(plugin, collections)]
#![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
}
with_to_string(x);
x != "foo".to_owned(); //~ERROR this creates an owned instance
x != String::from_str("foo"); //~ERROR this creates an owned instance
}