about summary refs log tree commit diff
path: root/tests/ui/issues/issue-22008.rs
blob: b537ce8c2721cf6a1e9274f1b7848d311d63d904 (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass
pub fn main() {
    let command = "a";

    match command {
        "foo" => println!("foo"),
        _     => println!("{}", command),
    }
}