Merge pull request #169 from Manishearth/rustup

removed String::from_str(..) to fix build with 1.4.0-nightly/2015-08-14
This commit is contained in:
llogiq 2015-08-14 14:29:22 +02:00
commit 1118f97691

View file

@ -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
}