/* Appellation: default Contrib: FL03 */ fn add(a: A, b: B) -> C where A: core::ops::Add, { a + b } #[test] fn compiles() { assert_eq!(add(10, 10), 20); assert_ne!(add(1, 1), 3); }