rust/src/test/compile-fail/issue-1193.rs
2012-05-02 14:47:33 -07:00

15 lines
238 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 {
alt v {
a { ret true; }
b { ret false; }
}
}
}