1pub fn default_fn() -> i32 { 2 42 3} 4 5#[test] 6fn test_default_fn() { 7 assert_eq!(default_fn(), 42); 8}