1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
mod message; mod newtype; mod owned_string; #[cfg(test)] mod tests { use crate::s; #[test] fn macro_s_to_string() { let s: String = s!("this"); assert_eq!(s, "this"); } }