summaryrefslogtreecommitdiffstats
path: root/tests/ui/match/issue-11940.rs
blob: 6815c87edd83af8f3ae91a5a8224ceac732f0f64 (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!()
    }
}