rust/src/test/compile-fail/issue-3038.rs

26 lines
561 B
Rust
Raw Normal View History

enum f { g(int, int) }
enum h { i(j, k) }
enum j { l(int, int) }
enum k { m(int, int) }
fn main()
{
2012-08-06 14:34:08 -05:00
let _z = match g(1, 2) {
2012-08-03 21:59:04 -05:00
g(x, x) => { log(debug, x + x); }
//~^ ERROR Identifier x is bound more than once in the same pattern
};
2012-08-06 14:34:08 -05:00
let _z = match i(l(1, 2), m(3, 4)) {
i(l(x, _), m(_, x)) //~ ERROR Identifier x is bound more than once in the same pattern
2012-08-03 21:59:04 -05:00
=> { log(error, x + x); }
};
2012-08-06 14:34:08 -05:00
let _z = match (1, 2) {
2012-08-03 21:59:04 -05:00
(x, x) => { x } //~ ERROR Identifier x is bound more than once in the same pattern
};
}