]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3718.rs
Auto merge of #86988 - thomcc:chunky-splitz-says-no-checking, r=the8472
[rust.git] / src / tools / rustfmt / tests / target / issue-3718.rs
1 fn main() {
2     let x: &[i32] = &[2, 2];
3     match x {
4         [_a, _] => println!("Wrong username or password"),
5         _ => println!("Logged in"),
6     }
7 }