Skip to content

Commit e9ef7d8

Browse files
authored
Merge pull request #530 from Amanieu/fix-glob-reexports
2 parents 4a733a0 + 30c2aba commit e9ef7d8

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)