diff options
| author | Michael Goulet <michael@errs.io> | 2024-01-05 23:41:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-05 23:41:44 -0500 |
| commit | a98993c2ea664ded3fcc53e6e1587af498f17648 (patch) | |
| tree | fe4269031bda1e9d91a60d19570aef048f88e016 | |
| parent | 61c776ae0a01b8fd00288ef61a2c3f38d8a98b36 (diff) | |
| parent | 0489fd05d8562a7ccaeb79d0566b45bc463a0853 (diff) | |
| download | rust-a98993c2ea664ded3fcc53e6e1587af498f17648.tar.gz rust-a98993c2ea664ded3fcc53e6e1587af498f17648.zip | |
Rollup merge of #119640 - petrochenkov:rtstartup, r=Mark-Simulacrum
library: Fix warnings in rtstartup Not sure why global `deny(warnings)` in bootstrap doesn't apply to this code, it did in the past.
| -rw-r--r-- | library/rtstartup/rsbegin.rs | 1 | ||||
| -rw-r--r-- | library/rtstartup/rsend.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/library/rtstartup/rsbegin.rs b/library/rtstartup/rsbegin.rs index 1df0c897053..14bce2bbeee 100644 --- a/library/rtstartup/rsbegin.rs +++ b/library/rtstartup/rsbegin.rs @@ -18,6 +18,7 @@ #![crate_type = "rlib"] #![no_core] #![allow(non_camel_case_types)] +#![allow(internal_features)] #[lang = "sized"] trait Sized {} diff --git a/library/rtstartup/rsend.rs b/library/rtstartup/rsend.rs index d5aca80edf9..714643c8386 100644 --- a/library/rtstartup/rsend.rs +++ b/library/rtstartup/rsend.rs @@ -5,6 +5,7 @@ #![feature(auto_traits)] #![crate_type = "rlib"] #![no_core] +#![allow(internal_features)] #[lang = "sized"] trait Sized {} |
