/* Appellation: default Contrib: FL03 */ #![cfg(test)] fn addition(a: A, b: B) -> C where A: std::ops::Add, { a + b } #[test] fn compiles() { let result = addition(2, 2); assert_eq!(result, 4); }