about summary refs log tree commit diff
path: root/tests/ui/match/issue-11940.rs
blob: 8dba1a6c60016cf20b3f0dc5720bc7b35d83a183 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-pass

const TEST_STR: &'static str = "abcd";

fn main() {
    let s = "abcd";
    match s {
        TEST_STR => (),
        _ => unreachable!()
    }
}