auto merge of #13183 : erickt/rust/remove-list, r=alexcrichton

`collections::list::List` was decided in a [team meeting](https://github.com/mozilla/rust/wiki/Meeting-weekly-2014-03-25) that it was unnecessary, so this PR removes it. Additionally, it removes an old and redundant purity test and fixes some warnings.
This commit is contained in:
bors 2014-03-29 11:41:37 -07:00
commit d878df05ad
11 changed files with 31 additions and 296 deletions

View file

@ -621,7 +621,7 @@ mod test {
#[test]
fn destroy_immediately() {
unsafe {
let mut m = StaticNativeMutex::new();
let m = StaticNativeMutex::new();
m.destroy();
}
}