diff options
| author | bors <bors@rust-lang.org> | 2017-01-17 14:38:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-01-17 14:38:29 +0000 |
| commit | aedebfe77de30675826505572f36767e77dfba90 (patch) | |
| tree | ba2a07761a3024144a0ce9acd51cf5e672fcd7db /src | |
| parent | a167c042abed695a049abf3919ce929765e6cc30 (diff) | |
| parent | f88f660af4706e11b2c9753334b783ca501a3b86 (diff) | |
| download | rust-aedebfe77de30675826505572f36767e77dfba90.tar.gz rust-aedebfe77de30675826505572f36767e77dfba90.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/run-pass/issue-38987.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-38987.rs b/src/test/run-pass/issue-38987.rs index a513476d4a3..29e96c162b8 100644 --- a/src/test/run-pass/issue-38987.rs +++ b/src/test/run-pass/issue-38987.rs @@ -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; } |
