diff options
| author | Scott McMurray <scottmcm@users.noreply.github.com> | 2017-11-26 19:30:20 -0800 |
|---|---|---|
| committer | Scott McMurray <scottmcm@users.noreply.github.com> | 2017-12-02 20:16:44 -0800 |
| commit | 49ee16131ee995e0641d30b15504da6f11b6c702 (patch) | |
| tree | 7cdd7135f0e9d79f3ea483cd36245fce730ec753 | |
| parent | d775d79a01ea65c8a9fb52d1f9011070d044e15e (diff) | |
| download | rust-49ee16131ee995e0641d30b15504da6f11b6c702.tar.gz rust-49ee16131ee995e0641d30b15504da6f11b6c702.zip | |
Remove the unneeded #![feature(lang_items)]s
| -rw-r--r-- | src/test/mir-opt/lower_128bit_debug_test.rs | 1 | ||||
| -rw-r--r-- | src/test/mir-opt/lower_128bit_test.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/test/mir-opt/lower_128bit_debug_test.rs b/src/test/mir-opt/lower_128bit_debug_test.rs index 5a0805ce1b7..ccc6e75a1b4 100644 --- a/src/test/mir-opt/lower_128bit_debug_test.rs +++ b/src/test/mir-opt/lower_128bit_debug_test.rs @@ -11,7 +11,6 @@ // compile-flags: -Z lower_128bit_ops -C debug_assertions=yes #![feature(i128_type)] -#![feature(lang_items)] fn test_signed(mut x: i128) -> i128 { x += 1; diff --git a/src/test/mir-opt/lower_128bit_test.rs b/src/test/mir-opt/lower_128bit_test.rs index f63926500b6..dc6beb436db 100644 --- a/src/test/mir-opt/lower_128bit_test.rs +++ b/src/test/mir-opt/lower_128bit_test.rs @@ -11,7 +11,6 @@ // compile-flags: -Z lower_128bit_ops -C debug_assertions=no #![feature(i128_type)] -#![feature(lang_items)] fn test_signed(mut x: i128) -> i128 { x += 1; |
