To understand what that that means, take a look at this code: if 1 > -7 { println!("๐"); } else { println!("๐"); } The compiler can deduce that one is greater negative seven, so it doesn't need to compile the "else" side. The whole conditional can be eliminated.
2 likes 1 replies
?