fn main() { match () { SomethingThatDefinitelyDoesNotExist => println!("This should not be printed! This should not even compile!"), () => println!("This is what should be printed."), } }