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:26:57 +02:00
parent 6f8d47b411
commit 811d89a01b
1 changed files with 3 additions and 6 deletions

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
}