rust/src/test/compile-fail/issue-3038.rs
2012-07-27 13:35:17 -07:00

26 lines
546 B
Rust

enum f { g(int, int) }
enum h { i(j, k) }
enum j { l(int, int) }
enum k { m(int, int) }
fn main()
{
let _z = alt g(1, 2) {
g(x, x) { log(debug, x + x); }
//~^ ERROR Identifier x is bound more than once in the same pattern
};
let _z = alt i(l(1, 2), m(3, 4)) {
i(l(x, _), m(_, x)) //~ ERROR Identifier x is bound more than once in the same pattern
{ log(error, x + x); }
};
let _z = alt (1, 2) {
(x, x) { x } //~ ERROR Identifier x is bound more than once in the same pattern
};
}