Skip to content

Commit

Permalink
Fix unused_imports warning on latest nightly (#575)
Browse files Browse the repository at this point in the history
This was causing CI to fail.
  • Loading branch information
ChrisDenton committed Dec 3, 2023
1 parent 6145fe6 commit b760f44
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/as-if-std/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ extern crate alloc;

// We want to `pub use std::*` in the root but we don't want `std` available in
// the root namespace, so do this in a funky inner module.
#[allow(unused_imports)]
mod __internal {
extern crate std;
pub use std::*;
Expand Down

0 comments on commit b760f44

Please sign in to comment.