````rust fn main() { let thing_a = 3; let thing_b = 4; assert_eq!(thing_a, thing_a); // lint here, this should probably be // assert_eq!(thing_a, thing_b) println!("{} {}", thing_a, thing_b); } ````