fn nested() { if true { if true { if true { match Some(1) { Some(_) => { println!("Deep!"); } None => {} } } } } }