Skip to content

Commit 30c2aba

Browse files
committed
Fix warning on latest nightly
This was causing CI to fail.
1 parent 4a733a0 commit 30c2aba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ mod __internal {
1414
pub use std::*;
1515
}
1616

17-
pub use __internal::*;
17+
#[allow(unused_imports)]
18+
use __internal::*;
1819

1920
// This is the magical part which we hope works.
2021
#[path = "../../../src/lib.rs"]

0 commit comments

Comments
 (0)