From 8d230f958aab1fd4e2781f96f146c48adc998aee Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Fri, 27 Nov 2020 06:50:08 -0800 Subject: [PATCH] Fix custom_target_dependency test. --- tests/testsuite/custom_target.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testsuite/custom_target.rs b/tests/testsuite/custom_target.rs index 88b84d06193..ef425730d99 100644 --- a/tests/testsuite/custom_target.rs +++ b/tests/testsuite/custom_target.rs @@ -62,7 +62,7 @@ fn custom_target_minimal() { #[cargo_test] fn custom_target_dependency() { if !is_nightly() { - // Requires features no_core, lang_items, optin_builtin_traits + // Requires features no_core, lang_items, auto_traits return; } let p = project() @@ -84,7 +84,7 @@ fn custom_target_dependency() { r#" #![feature(no_core)] #![feature(lang_items)] - #![feature(optin_builtin_traits)] + #![feature(auto_traits)] #![no_core] extern crate bar;