Skip to content

Commit f17ebb1

Browse files
Rollup merge of rust-lang#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.
2 parents 15892ff + 0489fd0 commit f17ebb1

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

library/rtstartup/rsbegin.rs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#![crate_type = "rlib"]
1919
#![no_core]
2020
#![allow(non_camel_case_types)]
21+
#![allow(internal_features)]
2122

2223
#[lang = "sized"]
2324
trait Sized {}

library/rtstartup/rsend.rs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#![feature(auto_traits)]
66
#![crate_type = "rlib"]
77
#![no_core]
8+
#![allow(internal_features)]
89

910
#[lang = "sized"]
1011
trait Sized {}

0 commit comments

Comments
 (0)