Skip to content

Commit 8a39407

Browse files
committed
allow internal_features, added in rust-lang/rust#108955
1 parent bac1455 commit 8a39407

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

examples/intrinsics.rs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
#![allow(unused_features)]
77
#![allow(stable_features)] // bench_black_box feature is stable, leaving for backcompat
8+
#![allow(internal_features)]
89
#![cfg_attr(thumb, no_main)]
910
#![deny(dead_code)]
1011
#![feature(bench_black_box)]

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#![no_builtins]
1515
#![no_std]
1616
#![allow(unused_features)]
17+
#![allow(internal_features)]
1718
// We use `u128` in a whole bunch of places which we currently agree with the
1819
// compiler on ABIs and such, so we should be "good enough" for now and changes
1920
// to the `u128` ABI will be reflected here.

0 commit comments

Comments
 (0)