try to reduce bajillion warnings

This commit is contained in:
Alexis
2015-02-19 12:57:25 -05:00
parent 522d09dfec
commit 97aa34046f
18 changed files with 58 additions and 51 deletions

View File

@@ -702,7 +702,7 @@ mod test {
use boxed::BoxAny;
use result;
use std::old_io::{ChanReader, ChanWriter};
use super::{Thread, Builder};
use super::{Builder};
use thread;
use thunk::Thunk;
use time::Duration;
@@ -767,7 +767,7 @@ mod test {
#[test]
#[should_fail]
fn test_scoped_implicit_panic() {
thread::scoped(|| panic!());
let _ = thread::scoped(|| panic!());
}
#[test]