Auto merge of #39100 - Mark-Simulacrum:fix-stage1, r=eddyb

Fix stage 1 tests broken because i128 doesn't work in stage 1

Broken by https://github.com/rust-lang/rust/pull/38992.
This commit is contained in:
bors 2017-01-17 14:38:29 +00:00
commit aedebfe77d

View file

@ -9,6 +9,10 @@
// except according to those terms.
#![feature(i128_type)]
// SNAP: run on all stages after snapshot, i128 currently doesn't work on stages 0 and 1
// ignore-stage1
// ignore-stage0
fn main() {
let _ = -0x8000_0000_0000_0000_0000_0000_0000_0000i128;
}