Test fixes and rebase conflicts, round 2

Conflicts:
	src/libcore/num/mod.rs
This commit is contained in:
Alex Crichton 2015-04-01 16:34:15 -07:00 committed by Felix S. Klock II
parent 07ff8ab885
commit f86318d63c
11 changed files with 19 additions and 17 deletions

View file

@ -11,6 +11,7 @@
#![feature(negate_unsigned)]
#![allow(unused_imports)]
#![feature(negate_unsigned)]
// Note: the relevant lint pass here runs before some of the constant
// evaluation below (e.g. that performed by trans and llvm), so if you

View file

@ -12,7 +12,7 @@
#![deny(exceeding_bitshifts)]
#![allow(unused_variables)]
#![allow(dead_code)]
#![feature(core)]
#![feature(core, negate_unsigned)]
fn main() {
let n = 1u8 << 7;

View file

@ -10,6 +10,7 @@
#![feature(negate_unsigned)]
#![allow(dead_code)]
#![feature(negate_unsigned)]
// compile-flags: -D unused-comparisons
fn main() { }