]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/issue-3718.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / rustfmt / tests / target / issue-3718.rs
CommitLineData
f20569fa
XL
1fn main() {
2 let x: &[i32] = &[2, 2];
3 match x {
4 [_a, _] => println!("Wrong username or password"),
5 _ => println!("Logged in"),
6 }
7}