]> git.lizzy.rs Git - rust.git/blob - tests/target/issue-3718.rs
Fix static async closure qualifier order
[rust.git] / 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 }