From c80fee2f905183390def1e64ef4666af10bf4c0f Mon Sep 17 00:00:00 2001 From: Scott McMurray Date: Sun, 26 Nov 2017 19:30:20 -0800 Subject: [PATCH] Remove the unneeded #![feature(lang_items)]s --- src/test/mir-opt/lower_128bit_debug_test.rs | 1 - src/test/mir-opt/lower_128bit_test.rs | 1 - 2 files changed, 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 5a0805ce1b716..ccc6e75a1b42e 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 f63926500b62f..dc6beb436db21 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;