rust/src/test/compile-fail/or-patter-mismatch.rs

6 lines
142 B
Rust

// error-pattern: mismatched types
enum blah { a(int, int, uint), b(int, int), }
fn main() { alt a(1, 1, 2u) { a(_, x, y) | b(x, y) { } } }