libsync: Remove all uses of ~str from libsync

This commit is contained in:
Patrick Walton 2014-05-13 14:57:26 -07:00
parent 7abf6f1346
commit 1440e09839

View File

@ -189,7 +189,7 @@ mod test {
#[should_fail]
fn test_futurefail() {
let mut f = Future::spawn(proc() fail!());
let _x: ~str = f.get();
let _x: StrBuf = f.get();
}
#[test]