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) {} } }