diff options
| author | Mark Mansi <markm@cs.wisc.edu> | 2018-03-17 11:46:31 -0500 |
|---|---|---|
| committer | Mark Mansi <markm@cs.wisc.edu> | 2018-03-26 08:37:56 -0500 |
| commit | 07104692d5df1401fe0109fca800e4efe4e81a6c (patch) | |
| tree | e7856e54c9046533f10a6d78cd06b53a1a2adebc /src/test/run-pass | |
| parent | ea89b507b37e089e87af5646042b911c84656b4a (diff) | |
| download | rust-07104692d5df1401fe0109fca800e4efe4e81a6c.tar.gz rust-07104692d5df1401fe0109fca800e4efe4e81a6c.zip | |
Fix missed i128 feature gates
Diffstat (limited to 'src/test/run-pass')
| -rw-r--r-- | src/test/run-pass/saturating-float-casts.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/u128-as-f32.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/saturating-float-casts.rs b/src/test/run-pass/saturating-float-casts.rs index d1a0901bb3d..ad3b4b17259 100644 --- a/src/test/run-pass/saturating-float-casts.rs +++ b/src/test/run-pass/saturating-float-casts.rs @@ -11,7 +11,7 @@ // Tests saturating float->int casts. See u128-as-f32.rs for the opposite direction. // compile-flags: -Z saturating-float-casts -#![feature(test, i128, stmt_expr_attributes)] +#![feature(test, stmt_expr_attributes)] #![deny(overflowing_literals)] extern crate test; diff --git a/src/test/run-pass/u128-as-f32.rs b/src/test/run-pass/u128-as-f32.rs index 3531a961bef..2848fb2d51a 100644 --- a/src/test/run-pass/u128-as-f32.rs +++ b/src/test/run-pass/u128-as-f32.rs @@ -10,7 +10,7 @@ // ignore-emscripten u128 not supported -#![feature(test, i128)] +#![feature(test)] #![deny(overflowing_literals)] extern crate test; |
