Skip to content

Commit 0489fd0

Browse files
committed
library: Fix warnings in rtstartup
1 parent b8c2074 commit 0489fd0

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)