rust/src/test/compile-fail/name-clash-nullary-2.rs
2012-01-19 16:01:47 -08:00

8 lines
135 B
Rust

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