1 2#[macro_use] 3mod error_group; 4 5pub mod error_types; 6pub use error_types::{ErrorType1, ErrorType2}; 7 8 9#[cfg(test)] 10mod tests { 11 #[test] 12 fn it_works() { 13 } 14}