rust/src/test/compile-fail/issue-1193.rs
2012-08-06 15:36:30 -07:00

15 lines
252 B
Rust

// error-pattern: pattern variable conflicts
mod foo {
type t = u8;
const a : t = 0u8;
const b : t = 1u8;
fn bar(v: t) -> bool {
match v {
a => { return true; }
b => { return false; }
}
}
}