1 2 3 4 5 6 7 8 9 10 11 12
mod outer { mod inner { pub fn name() -> &'static str { "Bob" } #[test] fn test_name() { assert_eq!(name(), "Bob"); } } }