18 lines
387 B
Rust
18 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
|
||
|
}
|