1//! Identifier types.
23// Intentionally not `pub`, so that we're free to experiment with the internal structure.
4mod compound;
5mod core;
6mod qualification;
7mod quote;
8#[cfg(test)]
9mod tests;
1011pub use compound::*;
12pub use core::*;
13pub use qualification::*;
14pub use quote::*;