Skip to content

Commit

Permalink
allow internal_features, added in rust-lang/rust#108955
Browse files Browse the repository at this point in the history
  • Loading branch information
klensy committed Aug 7, 2023
1 parent fdc1a87 commit f9beeba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/intrinsics.rs
Expand Up @@ -5,6 +5,7 @@

#![allow(unused_features)]
#![allow(stable_features)] // bench_black_box feature is stable, leaving for backcompat
#![allow(internal_features)]
#![cfg_attr(thumb, no_main)]
#![deny(dead_code)]
#![feature(bench_black_box)]
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Expand Up @@ -14,6 +14,7 @@
#![no_builtins]
#![no_std]
#![allow(unused_features)]
#![allow(internal_features)]
// We use `u128` in a whole bunch of places which we currently agree with the
// compiler on ABIs and such, so we should be "good enough" for now and changes
// to the `u128` ABI will be reflected here.
Expand Down

0 comments on commit f9beeba

Please sign in to comment.