From 891ced598aba6a8ecd66b0666532dedd985d929a Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 4 Aug 2023 19:08:38 -0700 Subject: [PATCH] Update test suite to nightly-2023-08-05 error: the feature `lang_items` is internal to the compiler or standard library --> src/main.rs:1:12 | 1 | #![feature(lang_items, start)] | ^^^^^^^^^^ | = note: using it is strongly discouraged = note: `#[deny(internal_features)]` on by default --- test_suite/no_std/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/test_suite/no_std/src/main.rs b/test_suite/no_std/src/main.rs index 666a1408..57b3f315 100644 --- a/test_suite/no_std/src/main.rs +++ b/test_suite/no_std/src/main.rs @@ -1,3 +1,4 @@ +#![allow(internal_features)] #![feature(lang_items, start)] #![no_std]