Skip to content

Commit b760f44

Browse files
authored
Fix unused_imports warning on latest nightly (#575)
This was causing CI to fail.
1 parent 6145fe6 commit b760f44

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/as-if-std/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ extern crate alloc;
99

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

0 commit comments

Comments
 (0)