]> git.lizzy.rs Git - rust.git/commitdiff
Fix stage 0 and 1 tests broken because i128 doesn't work in stages less than 2
authorMark Simulacrum <mark.simulacrum@gmail.com>
Mon, 16 Jan 2017 16:47:05 +0000 (09:47 -0700)
committerMark Simulacrum <mark.simulacrum@gmail.com>
Mon, 16 Jan 2017 19:42:43 +0000 (12:42 -0700)
Broken by https://github.com/rust-lang/rust/pull/38992.

src/test/run-pass/issue-38987.rs

index a513476d4a33a3fc2ed51dcabd072a71fe90983d..29e96c162b8def8ba9fe06b88095f6b9c6347f1c 100644 (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;
 }