From 7125b86c338a623bbaff5d4e86c73f19e4653c0a Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sat, 16 Jan 2021 18:27:10 +0100 Subject: [PATCH] remove some unnecessary feature gates --- tests/compile-fail/check_arg_count_too_few_args.rs | 2 -- tests/compile-fail/check_arg_count_too_many_args.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/tests/compile-fail/check_arg_count_too_few_args.rs b/tests/compile-fail/check_arg_count_too_few_args.rs index f8d11832683b..e1cea99eb90b 100644 --- a/tests/compile-fail/check_arg_count_too_few_args.rs +++ b/tests/compile-fail/check_arg_count_too_few_args.rs @@ -1,5 +1,3 @@ -#![feature(core_intrinsics)] - fn main() { extern "C" { fn malloc() -> *mut std::ffi::c_void; diff --git a/tests/compile-fail/check_arg_count_too_many_args.rs b/tests/compile-fail/check_arg_count_too_many_args.rs index 5163d223fa42..c4028b940ff0 100644 --- a/tests/compile-fail/check_arg_count_too_many_args.rs +++ b/tests/compile-fail/check_arg_count_too_many_args.rs @@ -1,5 +1,3 @@ -#![feature(core_intrinsics)] - fn main() { extern "C" { fn malloc(_: i32, _: i32) -> *mut std::ffi::c_void;