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.
This commit is contained in:
Michael Goulet 2024-01-05 23:41:44 -05:00 committed by GitHub
commit a98993c2ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@
#![crate_type = "rlib"]
#![no_core]
#![allow(non_camel_case_types)]
#![allow(internal_features)]
#[lang = "sized"]
trait Sized {}

View File

@ -5,6 +5,7 @@
#![feature(auto_traits)]
#![crate_type = "rlib"]
#![no_core]
#![allow(internal_features)]
#[lang = "sized"]
trait Sized {}