aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/alt-tag-nullary.rs
blob: f55f67e9e1849425e7ec249a84bc0dc024d6d5ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// error-pattern: mismatched types

tag a { A; }
tag b { B; }

fn main() {
    let a x = A;
    alt (x) {
        case (B) {}
    }
}