mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
removed String::from_str(..) to fix build with 1.4.0-nightly/2015-08-14
This commit is contained in:
parent
1afc5b6235
commit
ffda91a8c7
1 changed files with 3 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
#![feature(plugin, collections)]
|
||||
#![feature(plugin)]
|
||||
#![plugin(clippy)]
|
||||
|
||||
#[deny(cmp_owned)]
|
||||
|
@ -13,11 +13,8 @@ fn main() {
|
|||
|
||||
x != "foo".to_owned(); //~ERROR this creates an owned instance
|
||||
|
||||
#[allow(deprecated)] // for from_str
|
||||
fn old_timey(x : &str) {
|
||||
x != String::from_str("foo"); //~ERROR this creates an owned instance
|
||||
}
|
||||
old_timey(x);
|
||||
// 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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue