Skip to content

Commit

Permalink
rtstartup: add #![warn(unreachable_pub)]
Browse files Browse the repository at this point in the history
  • Loading branch information
Urgau committed Jan 20, 2025
1 parent 477ef65 commit 0f30662
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions library/rtstartup/rsbegin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#![no_core]
#![allow(non_camel_case_types)]
#![allow(internal_features)]
#![warn(unreachable_pub)]

#[lang = "sized"]
trait Sized {}
Expand Down
1 change: 1 addition & 0 deletions library/rtstartup/rsend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#![crate_type = "rlib"]
#![no_core]
#![allow(internal_features)]
#![warn(unreachable_pub)]

#[lang = "sized"]
trait Sized {}
Expand Down

0 comments on commit 0f30662

Please sign in to comment.