#![allow(dead_code, deprecated, unused_variables, unused_mut)] fn main() { let a = 3; let b = 1 + 2; assert_eq!(a, b); assert_eq!(a, b, "we are testing addition with {} and {}", a, b); }