rust/src/test/compile-fail/name-clash-nullary-2.rs
2012-03-05 17:05:20 -08:00

8 lines
137 B
Rust

// error-pattern:declaration of `thpppt` shadows
enum ack { thpppt, ffff, }
fn main() {
let thpppt: int = 42;
log(debug, thpppt);
}