Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src/read/abbrev.rs: Mark mod tests as pub(crate)
Fixes "warning: private item shadows public glob re-export" when doing "cargo test". warning: private item shadows public glob re-export --> src/read/mod.rs:681:1 | 681 | / mod tests { 682 | | use super::*; 683 | | use crate::common::Format; 684 | | use crate::endianity::LittleEndian; ... | 826 | | } 827 | | } | |_^ | note: the name `tests` in the type namespace is supposed to be publicly re-exported here --> src/read/mod.rs:208:9 | 208 | pub use self::abbrev::*; | ^^^^^^^^^^^^^^^ note: but the private item here shadows it --> src/read/mod.rs:681:1 | 681 | / mod tests { 682 | | use super::*; 683 | | use crate::common::Format; 684 | | use crate::endianity::LittleEndian; ... | 826 | | } 827 | | } | |_^ = note: `#[warn(hidden_glob_reexports)]` on by default
- Loading branch information